From 496eefd2ee12ba28a06e878e4e7984da27e407a5 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Wed, 18 Oct 2023 14:39:20 +0000 Subject: [PATCH] Whoops. Fix android. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4532 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 71be00fe..e0ea6e53 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,15 @@ ANDROID_TARGETS := \ $(ANDROID_ARMV7A_TARGETS) \ $(ANDROID_ARM64_TARGETS) ifeq ($(HAVE_ANDROID),1) -BUILD_TYPES += $(ANDROID_TARGETS) +BUILD_TYPES += \ + androiddebug \ + androidrelease \ + androiddebug-armv7a \ + androidrelease-armv7a \ + androiddebug-x86 \ + androidrelease-x86 \ + androiddebug-x86_64 \ + androidrelease-x86_64 all: out/TildeFriends-debug.apk out/TildeFriends-release.apk endif