]> git.mxchange.org Git - friendica.git/blob - images/icons/Makefile
Merge pull request #35 from fabrixxm/master
[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
6
7 DESTS=10/ 16/ 22/ 48/ \
8                 $(addprefix 10/, $(IMAGES)) \
9                 $(addprefix 16/, $(IMAGES)) \
10                 $(addprefix 22/, $(IMAGES)) \
11                 $(addprefix 48/, $(IMAGES))
12          
13 all: $(DESTS)
14
15 %/:
16         mkdir $@
17
18 10/%.png: %.png
19         convert $< -resize 10x10 $@
20         
21 16/%.png: %.png
22         convert $< -resize 16x16 $@
23
24 22/%.png: %.png
25         convert $< -resize 22x22 $@
26
27 48/%.png: %.png
28         convert $< -resize 48x48 $@
29
30
31
32