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