Archived
1
0
Fork 0
This repository has been archived on 2020-02-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
cosmos/images/Makefile

10 lines
156 B
Makefile
Raw Normal View History

2013-11-25 20:34:40 +01:00
.PHONY: all
2013-11-26 10:17:08 +01:00
all: optipng
2013-11-25 10:53:24 +01:00
make -C ../asset
2013-11-25 20:34:40 +01:00
2013-11-26 10:17:08 +01:00
.PHONY: optipng
optipng: $(addprefix crushed/, $(wildcard *.png))
2013-11-25 20:34:40 +01:00
crushed/%.png: %.png
2013-11-26 10:17:08 +01:00
optipng -o7 $< -out $@