dl/htdocs/img/makefile

13 lines
145 B
Makefile
Raw Normal View History

2020-06-18 13:37:52 +00:00
TARGETS = favicon.png favicon-32.png
.PHONEY: clean all
all: $(TARGETS)
%.png: %.svg
inkscape -e $@ $<
optipng $@
clean: $(TARGETS)
rm $^