summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 4e7d6d48f78f8b3df3fe1dc15c329a3cb21341f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: build

clean_output:
	@mkdir -p output
	@rm -rf output/*

clean_showcase:
	@mkdir -p showcase
	@rm -rf showcase/*

build: clean_output
	@scripts/build.sh

showcase: clean_showcase
	@scripts/build_showcase.sh

.PHONY: all clean build showcase