X-Git-Url: https://git.yukkurigames.com/?p=yukkurigames.com.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=8c3568b8927e399759b003406d9ba95954d09d43;hp=0000000000000000000000000000000000000000;hb=0deb86d4b584652d3abe15f6db130c199eebedb7;hpb=ced8755604641c25869df164af07c199d6818dea diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8c3568b --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +#!/usr/bin/make -f + +favicon_%.png: favicon.svg + rsvg-convert -w $* -h $* $^ > $@ + +%.ico: %_128.png %_64.png %_48.png %_32.png %_16.png + convert $^ $@ + +ICONS := favicon.ico favicon_128.png favicon_192.png favicon_256.png + +all: $(ICONS) + +clean: + $(RM) $(ICONS) +