]> git.mxchange.org Git - friendica.git/blob - images/icons/Makefile
Couple of spare smiley images removed.
[friendica.git] / images / icons / Makefile
1
2 IMAGES=add.png edit.png gear.png info.png menu.png \
3                 notify_off.png star.png  delete.png feed.png group.png \
4                 lock.png notice.png notify_on.png user.png link.png \
5                 play.png plugin.png unlock.png zip.png audio.png video.png \
6                 image.png text.png
7
8 DESTS=10/ 16/ 22/ 48/ \
9                 $(addprefix 10/, $(IMAGES)) \
10                 $(addprefix 16/, $(IMAGES)) \
11                 $(addprefix 22/, $(IMAGES)) \
12                 $(addprefix 48/, $(IMAGES))
13          
14 all: $(DESTS)
15
16 %/:
17         mkdir $@
18
19 10/%.png: %.png
20         convert $< -resize 10x10 $@
21         
22 16/%.png: %.png
23         convert $< -resize 16x16 $@
24
25 22/%.png: %.png
26         convert $< -resize 22x22 $@
27
28 48/%.png: %.png
29         convert $< -resize 48x48 $@
30
31
32
33