summaryrefslogtreecommitdiff
path: root/app/images/icons/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'app/images/icons/Makefile')
-rw-r--r--app/images/icons/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/images/icons/Makefile b/app/images/icons/Makefile
index 8ee31c1..7f53b0a 100644
--- a/app/images/icons/Makefile
+++ b/app/images/icons/Makefile
@@ -1,13 +1,15 @@
BROWSER_SIZES := 16 24 32 48 64
ANDROID_SIZES := 72 96 144 192
+WEB_ICON_SIZES := $(BROWSER_SIZES) $(ANDROID_SIZES)
#IOS_1X_SIZES := 20 29 40 76 # No such devices exist anymore
IOS_2X_SIZES := 40 58 80 120 152 167
IOS_3X_SIZES := 60 87 120 180
ALL_IOS_SIZES := $(IOS_1X_SIZES) $(IOS_2X_SIZES) $(IOS_3X_SIZES)
-ALL_SIZES := $(BROWSER_SIZES) $(ANDROID_SIZES) $(ALL_IOS_SIZES)
-ALL_ICONS := $(ALL_SIZES:%=novnc-%.png)
+ALL_ICONS := \
+ $(ALL_IOS_SIZES:%=novnc-ios-%.png) \
+ $(WEB_ICON_SIZES:%=novnc-%.png)
all: $(ALL_ICONS)
@@ -25,5 +27,9 @@ novnc-%.png: novnc-icon.svg
convert -density $$[`echo $*` * 90 / 48] \
-background transparent "$<" "$@"
+novnc-ios-%.png: novnc-ios-icon.svg
+ convert -depth 8 -background transparent \
+ -size $*x$* "$<" "$@"
+
clean:
rm -f *.png