30 lines
543 B
Makefile
30 lines
543 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
jni_init.cpp \
|
|
com_android_terminal_Terminal.cpp \
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
external/libvterm/include \
|
|
libcore/include \
|
|
frameworks/base/include
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libandroidfw \
|
|
libandroid_runtime \
|
|
liblog \
|
|
libnativehelper \
|
|
libutils
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libvterm
|
|
|
|
LOCAL_CFLAGS := \
|
|
-Wno-unused-parameter \
|
|
|
|
LOCAL_MODULE := libjni_terminal
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|