9 lines
156 B
Makefile
9 lines
156 B
Makefile
.PHONY: all
|
|
all: optipng
|
|
make -C ../asset
|
|
|
|
.PHONY: optipng
|
|
optipng: $(addprefix crushed/, $(wildcard *.png))
|
|
|
|
crushed/%.png: %.png
|
|
optipng -o7 $< -out $@
|