From 6460ad117aa4fb6ecc0ab7a42527baa7431f8859 Mon Sep 17 00:00:00 2001 From: ignaciogarcia Date: Thu, 27 Oct 2022 09:26:07 +0200 Subject: [PATCH] PEMA-107 Add some convenient methods in external/Makefile --- android/external/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/android/external/Makefile b/android/external/Makefile index 7cd5898..db81789 100644 --- a/android/external/Makefile +++ b/android/external/Makefile @@ -67,3 +67,19 @@ downloads/downloads.stamp: $(MAKE) -C downloads assets: + +showAllSetups: showx86Setup showx86_64Setup showArmSetup showArm64Setup + +showx86Setup: + $(MAKE) -C x86 showsetup + +showx86_64Setup: + $(MAKE) -C x86_64 showsetup + +showArmSetup: + $(MAKE) -C armeabi-v7a showsetup + +showArm64Setup: + $(MAKE) -C arm64-v8a showsetup + +createMakefiles: armeabi-v7a/Makefile arm64-v8a/Makefile x86/Makefile x86_64/Makefile