Ticket #8756: Makefile

File Makefile, 383 bytes (added by jvprat, 17 years ago)

Updated Makefile

Line 
1GENERATED_IMAGES=scummvm_icon_big.png scummvm_16.png scummvm_32.png scummvm_128.png scummvm.xpm
2
3icons: $(GENERATED_IMAGES)
4
5scummvm_icon_big.png: scummvm_icon.svg
6 inkscape -e $@ -w 256 -h 256 $<
7
8scummvm_%.png: scummvm_icon_big.png
9 convert $< -resize $*x$* $@
10
11scummvm.xpm: scummvm_icon_big.png
12 convert $< -resize 32x32 $@
13
14clean:
15 rm -f $(GENERATED_IMAGES)
16
17.PHONY: icons clean