diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -8,10 +8,13 @@ clean_showcase: | |||
8 | @mkdir -p showcase | 8 | @mkdir -p showcase |
9 | @rm -rf showcase/* | 9 | @rm -rf showcase/* |
10 | 10 | ||
11 | build: clean_output | 11 | icons: clean_output |
12 | @scripts/build.sh | 12 | @scripts/build.sh |
13 | 13 | ||
14 | showcase: clean_showcase | 14 | showcase: clean_showcase |
15 | @scripts/build_showcase.sh | 15 | @scripts/build_showcase.sh |
16 | 16 | ||
17 | .PHONY: all clean build showcase | 17 | build: icons |
18 | $(MAKE) showcase | ||
19 | |||
20 | .PHONY: all clean_output clean_showcase icons showcase build | ||