This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
.PHONY: all
|
|
all: optipng
|
|
make -C ../asset
|
|
|
|
.PHONY: optipng
|
|
optipng: $(addprefix crushed/, $(wildcard *.png))
|
|
|
|
crushed/%.png: %.png
|
|
optipng -o7 $< -out $@
|