From 1024142b3651221aafc47c51e3365928ff5045d3 Mon Sep 17 00:00:00 2001 From: mathmil <82173590+mathmil@users.noreply.github.com> Date: Fri, 10 Apr 2026 14:57:37 +0000 Subject: [PATCH 1/2] remove duplicates from Makefile --- Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Makefile b/Makefile index 4959fb9..fd75576 100644 --- a/Makefile +++ b/Makefile @@ -35,11 +35,6 @@ LDFLAGS += -s # LDFLAGS += -static-libstdc++ # $(NDK)/toolchains/llvm/prebuilt/$(OS_NAME)/sysroot/usr/lib/aarch64-linux-android/libc.a -ANDROID_FULLSCREEN?=y -ADB?=adb -UNAME := $(shell uname) - - ANDROIDSRCS:= $(SRC) $(RAWDRAWANDROIDSRCS) #if you have a custom Android Home location you can add it to this list. From 7e9925a916502b06cc98c7e2c08cf618485664fd Mon Sep 17 00:00:00 2001 From: mathmil <82173590+mathmil@users.noreply.github.com> Date: Fri, 10 Apr 2026 15:22:50 +0000 Subject: [PATCH 2/2] Update Makefile move a comment to the right spot --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index fd75576..9a73b8e 100644 --- a/Makefile +++ b/Makefile @@ -37,10 +37,6 @@ LDFLAGS += -s ANDROIDSRCS:= $(SRC) $(RAWDRAWANDROIDSRCS) -#if you have a custom Android Home location you can add it to this list. -#This makefile will select the first present folder. - - ifeq ($(UNAME), Linux) OS_NAME = linux-x86_64 endif @@ -52,6 +48,7 @@ OS_NAME = windows-x86_64 endif # Search list for where to try to find the SDK +# If you have a custom Android Home location you can add it to this list. SDK_LOCATIONS += $(ANDROID_HOME) $(ANDROID_SDK_ROOT) ~/Android/Sdk $(HOME)/Library/Android/sdk #Just a little Makefile witchcraft to find the first SDK_LOCATION that exists