Browse Source
PEMA-107 Add some convenient methods in external/Makefile
pull/30/head
ignaciogarcia
3 years ago
No known key found for this signature in database
GPG Key ID: 5E6A455C909DD623
1 changed files with
16 additions and
0 deletions
-
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 |
|
|
|