spongy-client-chrome/Makefile

19 lines
302 B
Makefile
Raw Normal View History

2015-02-09 14:10:50 -07:00
ICONS += icon-16.png
ICONS += icon-32.png
ICONS += icon-48.png
ICONS += icon-128.png
ICONS += icon-256.png
2014-10-27 11:51:46 -06:00
2015-02-09 14:10:50 -07:00
all: icons
2014-10-27 11:51:46 -06:00
icons: $(ICONS)
2015-02-09 14:10:50 -07:00
icon-%.png: icon.svg
2014-10-27 11:51:46 -06:00
inkscape --export-png=$@ --export-width=$* $<
2014-10-27 13:36:42 -06:00
package: icons
2015-02-09 14:10:50 -07:00
git ls-files | zip -ru -@ /tmp/spongy-client-chrome.zip
clean:
rm -f $(ICONS)