And fix the error _I_ made in r7311. I should stop coding now,
[sgt/puzzles] / icons / Makefile
1 # Makefile for Puzzles icons.
2
3 PUZZLES = blackbox bridges cube dominosa fifteen flip galaxies guess inertia \
4 lightup loopy map mines net netslide pattern pegs rect samegame \
5 sixteen slant solo tents twiddle unequal untangle
6
7 BASE = $(patsubst %,%-base.png,$(PUZZLES))
8 WEB = $(patsubst %,%-web.png,$(PUZZLES))
9
10 IBASE = $(patsubst %,%-ibase.png,$(PUZZLES))
11 IBASE4 = $(patsubst %,%-ibase4.png,$(PUZZLES))
12 P48D24 = $(patsubst %,%-48d24.png,$(PUZZLES))
13 P48D8 = $(patsubst %,%-48d8.png,$(PUZZLES))
14 P48D4 = $(patsubst %,%-48d4.png,$(PUZZLES))
15 P32D24 = $(patsubst %,%-32d24.png,$(PUZZLES))
16 P32D8 = $(patsubst %,%-32d8.png,$(PUZZLES))
17 P32D4 = $(patsubst %,%-32d4.png,$(PUZZLES))
18 P16D24 = $(patsubst %,%-16d24.png,$(PUZZLES))
19 P16D8 = $(patsubst %,%-16d8.png,$(PUZZLES))
20 P16D4 = $(patsubst %,%-16d4.png,$(PUZZLES))
21 ICONS = $(patsubst %,%.ico,$(PUZZLES))
22 CICONS = $(patsubst %,%-icon.c,$(PUZZLES))
23 RC = $(patsubst %,%.rc,$(PUZZLES))
24
25 BIN = ../
26 PIC = ./
27
28 base: $(BASE)
29 web: $(WEB)
30 pngicons: $(P48D24) $(P32D24) $(P16D24)
31 winicons: $(ICONS) $(RC)
32 gtkicons: $(CICONS)
33 all: base web pngicons winicons gtkicons
34
35 # Build the base puzzle screenshots from which all the other images
36 # are derived. Some of them involve showing a move animation
37 # part-way through.
38 fifteen-base.png : override REDO=0.3
39 flip-base.png : override REDO=0.3
40 netslide-base.png : override REDO=0.3
41 sixteen-base.png : override REDO=0.3
42 twiddle-base.png : override REDO=0.3
43 $(BASE): %-base.png: $(BIN)% $(PIC)%.sav
44 $(PIC)screenshot.sh $(BIN)$* $(PIC)$*.sav $@ $(REDO)
45
46 # Build the screenshots for the web, by scaling the original base
47 # images to a uniform size.
48 $(WEB): %-web.png: %-base.png
49 $(PIC)square.pl 150 5 $^ $@
50
51 # Build the base _icon_ images, by careful cropping of the base
52 # images: icons are very small so it's often necessary to zoom in
53 # on a smaller portion of the screenshot.
54 blackbox-ibase.png : override CROP=352x352 144x144+0+208
55 bridges-ibase.png : override CROP=264x264 107x107+157+157
56 dominosa-ibase.png : override CROP=304x272 152x152+152+0
57 fifteen-ibase.png : override CROP=240x240 120x120+0+120
58 flip-ibase.png : override CROP=288x288 145x145+120+72
59 galaxies-ibase.png : override CROP=288x288 165x165+0+0
60 guess-ibase.png : override CROP=263x420 178x178+75+17
61 inertia-ibase.png : override CROP=321x321 128x128+193+0
62 lightup-ibase.png : override CROP=256x256 112x112+144+0
63 loopy-ibase.png : override CROP=257x257 113x113+0+0
64 mines-ibase.png : override CROP=240x240 110x110+130+130
65 net-ibase.png : override CROP=193x193 113x113+0+80
66 netslide-ibase.png : override CROP=289x289 144x144+0+0
67 pattern-ibase.png : override CROP=384x384 223x223+0+0
68 pegs-ibase.png : override CROP=263x263 147x147+116+0
69 rect-ibase.png : override CROP=205x205 115x115+90+0
70 sixteen-ibase.png : override CROP=288x288 144x144+144+144
71 slant-ibase.png : override CROP=321x321 160x160+160+160
72 solo-ibase.png : override CROP=321x321 97x97+16+16
73 tents-ibase.png : override CROP=320x320 165x165+142+0
74 twiddle-ibase.png : override CROP=192x192 102x102+69+21
75 unequal-ibase.png : override CROP=208x208 104x104+104+104
76 untangle-ibase.png : override CROP=320x320 164x164+3+116
77 $(IBASE): %-ibase.png: %-base.png
78 $(PIC)crop.sh $^ $@ $(CROP)
79
80 # Convert the full-size icon images to 4-bit colour, because that
81 # seems to work better than reducing it in 24 bits and then
82 # dithering.
83 $(IBASE4): %-ibase4.png: %-ibase.png
84 convert -colors 16 +dither -map $(PIC)win16pal.xpm $^ $@
85
86 # Build the 24-bit PNGs for the icons, at three sizes.
87 $(P48D24): %-48d24.png: %-ibase.png
88 $(PIC)square.pl 48 4 $^ $@
89 $(P32D24): %-32d24.png: %-ibase.png
90 $(PIC)square.pl 32 2 $^ $@
91 $(P16D24): %-16d24.png: %-ibase.png
92 $(PIC)square.pl 16 1 $^ $@
93
94 # The 8-bit icon PNGs are just custom-paletted quantisations of the
95 # 24-bit ones.
96 $(P48D8) $(P32D8) $(P16D8): %d8.png: %d24.png
97 convert -colors 256 $^ $@
98
99 # But the depth-4 images work better if we re-shrink from the
100 # ibase4 versions of the images, and then normalise the colours
101 # again afterwards. (They're still not very good, but my hope is
102 # that on most modern Windows machines this won't matter too
103 # much...)
104 $(P48D4): %-48d4.png: %-ibase4.png
105 $(PIC)square.pl 48 1 $^ $@-tmp2.png
106 convert -colors 16 -map $(PIC)win16pal.xpm $@-tmp2.png $@
107 rm -f $@-tmp2.png
108 $(P32D4): %-32d4.png: %-ibase.png
109 $(PIC)square.pl 32 1 $^ $@-tmp2.png
110 convert -colors 16 -map $(PIC)win16pal.xpm $@-tmp2.png $@
111 rm -f $@-tmp2.png
112 $(P16D4): %-16d4.png: %-ibase.png
113 $(PIC)square.pl 16 1 $^ $@-tmp2.png
114 convert -colors 16 -map $(PIC)win16pal.xpm $@-tmp2.png $@
115 rm -f $@-tmp2.png
116
117 # Build the actual Windows icons themselves, by feeding all those
118 # PNGs to my icon builder script.
119 $(ICONS): %.ico: %-48d24.png %-48d8.png %-48d4.png \
120 %-32d24.png %-32d8.png %-32d4.png \
121 %-16d24.png %-16d8.png %-16d4.png
122 $(PIC)icon.pl -24 $*-48d24.png $*-32d24.png $*-16d24.png \
123 -8 $*-48d8.png $*-32d8.png $*-16d8.png \
124 -4 $*-48d4.png $*-32d4.png $*-16d4.png > $@
125
126 # Build the .RC files which bind the icons into the applications.
127 $(RC): %.rc:
128 echo '200 ICON "$*.ico"' > $@
129
130 # Build the GTK icon source files.
131 $(CICONS): %-icon.c: %-16d24.png %-32d24.png %-48d24.png
132 $(PIC)cicon.pl $^ > $@
133
134 clean:
135 rm -f *.png *.ico *.rc *-icon.c