Simplify icon variables by removing the filename
The filename is the same for all of these, lets break out that part to simplify things.
This commit is contained in:
parent
99a9c03f3c
commit
034fd376ac
|
@ -1,26 +1,10 @@
|
||||||
BROWSER := \
|
BROWSER_SIZES := 16 24 32 48 64
|
||||||
novnc-16x16.png \
|
ANDROID_SIZES := 48 72 96 144 192
|
||||||
novnc-24x24.png \
|
IPHONE_SIZES := 60 120
|
||||||
novnc-32x32.png \
|
IPAD_SIZES := 76 152
|
||||||
novnc-48x48.png \
|
|
||||||
novnc-64x64.png
|
|
||||||
|
|
||||||
ANDROID_LAUNCHER := \
|
ALL_SIZES := $(BROWSER_SIZES) $(ANDROID_SIZES) $(IPHONE_SIZES) $(IPAD_SIZES)
|
||||||
novnc-48x48.png \
|
ALL_ICONS := $(foreach SIZE, $(ALL_SIZES), novnc-$(SIZE)x$(SIZE).png)
|
||||||
novnc-72x72.png \
|
|
||||||
novnc-96x96.png \
|
|
||||||
novnc-144x144.png \
|
|
||||||
novnc-192x192.png
|
|
||||||
|
|
||||||
IPHONE_LAUNCHER := \
|
|
||||||
novnc-60x60.png \
|
|
||||||
novnc-120x120.png
|
|
||||||
|
|
||||||
IPAD_LAUNCHER := \
|
|
||||||
novnc-76x76.png \
|
|
||||||
novnc-152x152.png
|
|
||||||
|
|
||||||
ALL_ICONS := $(BROWSER) $(ANDROID_LAUNCHER) $(IPHONE_LAUNCHER) $(IPAD_LAUNCHER)
|
|
||||||
|
|
||||||
all: $(ALL_ICONS)
|
all: $(ALL_ICONS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue