Rename browser icon variable to reflect use

The other variables in the Makefile are named according to how the icons
are used, lets do the same for the variable for the browser icons.
This commit is contained in:
Samuel Mannehed 2022-12-22 11:13:20 +01:00
parent ec45911456
commit 99a9c03f3c
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
ICONS := \ BROWSER := \
novnc-16x16.png \ novnc-16x16.png \
novnc-24x24.png \ novnc-24x24.png \
novnc-32x32.png \ novnc-32x32.png \
@ -20,7 +20,7 @@ IPAD_LAUNCHER := \
novnc-76x76.png \ novnc-76x76.png \
novnc-152x152.png novnc-152x152.png
ALL_ICONS := $(ICONS) $(ANDROID_LAUNCHER) $(IPHONE_LAUNCHER) $(IPAD_LAUNCHER) ALL_ICONS := $(BROWSER) $(ANDROID_LAUNCHER) $(IPHONE_LAUNCHER) $(IPAD_LAUNCHER)
all: $(ALL_ICONS) all: $(ALL_ICONS)