From 99a9c03f3c5815552d26527e9560a95292abbf6f Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Thu, 22 Dec 2022 11:13:20 +0100 Subject: [PATCH] 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. --- app/images/icons/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/images/icons/Makefile b/app/images/icons/Makefile index be564b43..d259fc28 100644 --- a/app/images/icons/Makefile +++ b/app/images/icons/Makefile @@ -1,4 +1,4 @@ -ICONS := \ +BROWSER := \ novnc-16x16.png \ novnc-24x24.png \ novnc-32x32.png \ @@ -20,7 +20,7 @@ IPAD_LAUNCHER := \ novnc-76x76.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)