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