dl/htdocs/img/makefile
2020-06-18 15:53:59 +02:00

13 lines
145 B
Makefile

TARGETS = favicon.png favicon-32.png
.PHONEY: clean all
all: $(TARGETS)
%.png: %.svg
inkscape -e $@ $<
optipng $@
clean: $(TARGETS)
rm $^