mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
Some platforms don't have direct executable formats. For instance, on Android, there *is* an EXE format for a given ARCH, but .so does not apply to ARCH-less builds. And having default rules for %.so on ARCH-less Android would get in the way when copying the shared obejcts for the APK.
11 lines
147 B
Makefile
11 lines
147 B
Makefile
TOOLCHAIN = android
|
|
|
|
EPSILON_TELEMETRY ?= 1
|
|
|
|
ARCHS = armeabi-v7a arm64-v8a x86 x86_64
|
|
|
|
ifdef ARCH
|
|
EXE = so
|
|
BUILD_DIR := $(BUILD_DIR)/$(ARCH)
|
|
endif
|