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