1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-22 11:44:53 +08:00
serial/android/jni/Android.mk
Cheng Zhong f8553a1424 Removed non-C++ code
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
2016-01-25 14:21:14 +08:00

16 lines
325 B
Makefile

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := serial
LOCAL_C_INCLUDES := \
$(LOCAL_PATH)/include\
$(LOCAL_PATH)/../../include
LOCAL_SRC_FILES := glob.c \
../../src/serial.cc \
../../src/impl/unix.cc \
../../src/impl/list_ports/list_ports_linux.cc
include $(BUILD_SHARED_LIBRARY)