aboutsummaryrefslogtreecommitdiffstats
path: root/images/icons/Makefile
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-09-27 16:54:33 +0200
committerFabio Comuni <fabrix.xm@gmail.com>2011-09-27 16:54:33 +0200
commite986fc3e301f2a0cfb3b975fe60974fc5dcfd76b (patch)
tree27fd8c5e4d63c8142710a172e7858d738190f6e4 /images/icons/Makefile
parent30df9abeac7c80a27f4727e29a1cad6b928edf4e (diff)
downloadvolse-hubzilla-e986fc3e301f2a0cfb3b975fe60974fc5dcfd76b.tar.gz
volse-hubzilla-e986fc3e301f2a0cfb3b975fe60974fc5dcfd76b.tar.bz2
volse-hubzilla-e986fc3e301f2a0cfb3b975fe60974fc5dcfd76b.zip
quattro: actions in wall_item
less html in conversation.php removed unused tpls fixed old themes
Diffstat (limited to 'images/icons/Makefile')
-rw-r--r--images/icons/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/images/icons/Makefile b/images/icons/Makefile
new file mode 100644
index 000000000..39428d154
--- /dev/null
+++ b/images/icons/Makefile
@@ -0,0 +1,31 @@
+
+IMAGES=add.png edit.png gear.png info.png menu.png \
+ notify_off.png star.png delete.png feed.png group.png \
+ lock.png notice.png notify_on.png user.png link.png
+
+DESTS=10/ 16/ 22/ 48/ \
+ $(addprefix 10/, $(IMAGES)) \
+ $(addprefix 16/, $(IMAGES)) \
+ $(addprefix 22/, $(IMAGES)) \
+ $(addprefix 48/, $(IMAGES))
+
+all: $(DESTS)
+
+%/:
+ mkdir $@
+
+10/%.png: %.png
+ convert $< -resize 10x10 $@
+
+16/%.png: %.png
+ convert $< -resize 16x16 $@
+
+22/%.png: %.png
+ convert $< -resize 22x22 $@
+
+48/%.png: %.png
+ convert $< -resize 48x48 $@
+
+
+
+