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
16 lines
325 B
Makefile
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)
|