summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 627f045e10494f98f299c27b36c6f6eeb42ef7a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
all: build

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

build: clean
	@scripts/build.sh

.PHONY: all clean build