blob: 80eb5ef44d5168ba2792fdef055c453b0273debf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
all: build
clean_output:
@mkdir -p output
@rm -rf output/*
clean_showcase:
@mkdir -p showcase
@rm -rf showcase/*
icons: clean_output
@scripts/build.sh
showcase: clean_showcase
@scripts/build_showcase.sh
build: icons
$(MAKE) showcase
.PHONY: all clean_output clean_showcase icons showcase build
|