summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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