mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +00:00
12 lines
182 B
Makefile
12 lines
182 B
Makefile
ifeq ($(GLES),3)
|
|
APP_PLATFORM := android-18
|
|
else
|
|
APP_PLATFORM := android-9
|
|
endif
|
|
|
|
ifndef TARGET_ABIS
|
|
APP_ABI := armeabi-v7a mips x86
|
|
else
|
|
APP_ABI := $(TARGET_ABIS)
|
|
endif
|