summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-03-28 15:29:16 +0200
committerVolpeon <git@volpeon.ink>2021-03-28 15:29:16 +0200
commitf784d6f2c67473e2e48166c38c1e09f3d8c69fd0 (patch)
treec19084b7e308e2d428e7e498c32726f59deb676f /Makefile
parentAdjusted some icons, added build script (diff)
downloadiro-icons-f784d6f2c67473e2e48166c38c1e09f3d8c69fd0.tar.gz
iro-icons-f784d6f2c67473e2e48166c38c1e09f3d8c69fd0.tar.bz2
iro-icons-f784d6f2c67473e2e48166c38c1e09f3d8c69fd0.zip
Improved build script, added showcase
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 10 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 627f045..4e7d6d4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,17 @@
1all: build 1all: build
2 2
3clean: 3clean_output:
4 @mkdir -p output 4 @mkdir -p output
5 @rm -rf output/* 5 @rm -rf output/*
6 6
7build: clean 7clean_showcase:
8 @mkdir -p showcase
9 @rm -rf showcase/*
10
11build: clean_output
8 @scripts/build.sh 12 @scripts/build.sh
9 13
10.PHONY: all clean build 14showcase: clean_showcase
15 @scripts/build_showcase.sh
16
17.PHONY: all clean build showcase