From b36dc2002e7e913d86151494b02d7277f7c2bcc8 Mon Sep 17 00:00:00 2001 From: ignaciogarcia Date: Thu, 27 Oct 2022 11:07:49 +0200 Subject: [PATCH] PEMA-107 Allow to pass abi(s) to build for as parameter --- android/external/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/external/Makefile b/android/external/Makefile index db81789..6c97e1f 100644 --- a/android/external/Makefile +++ b/android/external/Makefile @@ -21,7 +21,7 @@ endif .PHONY: all build clean clean-all build-arm build-arm64 build-x86 build-x86_64 -build: all +build: $(if $(archs),$(foreach wrd, $(archs), build-$(wrd)), all) all: build-arm build-arm64 build-x86 build-x86_64