mirror of
https://github.com/wjwwood/serial.git
synced 2026-01-22 11:44:53 +08:00
Removed android specific files: - Android JNI bridges C++ and java codes (will move to a new repository) - Android library project and sample project - Build files for android
13 lines
242 B
Makefile
13 lines
242 B
Makefile
# NDK_TOOLCHAIN_VERSION := clang
|
|
|
|
ifeq ($(NDK_DEBUG), 1)
|
|
APP_OPTIM := debug
|
|
else
|
|
APP_OPTIM := release
|
|
endif
|
|
|
|
APP_PLATFORM := android-16
|
|
APP_ABI := armeabi-v7a x86
|
|
APP_STL := gnustl_static
|
|
#APP_CFLAGS := -std=gnu11
|
|
APP_CPPFLAGS := -fexceptions
|