44 lines
1,020 B
Makefile
44 lines
1,020 B
Makefile
VOB_COMPONENTS := external/libnfc-nci/src
|
|
NFA := $(VOB_COMPONENTS)/nfa
|
|
NFC := $(VOB_COMPONENTS)/nfc
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|
|
|
|
ifneq ($(NCI_VERSION),)
|
|
LOCAL_CFLAGS += -DNCI_VERSION=$(NCI_VERSION) -O0 -g
|
|
endif
|
|
|
|
LOCAL_CFLAGS += -Wall -Wextra -Wno-unused-parameter -Werror
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-cpp-files) $(call all-subdir-c-files)
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
external/libxml2/include \
|
|
frameworks/native/include \
|
|
libcore/include \
|
|
$(NFA)/include \
|
|
$(NFA)/brcm \
|
|
$(NFC)/include \
|
|
$(NFC)/brcm \
|
|
$(NFC)/int \
|
|
$(VOB_COMPONENTS)/hal/include \
|
|
$(VOB_COMPONENTS)/hal/int \
|
|
$(VOB_COMPONENTS)/include \
|
|
$(VOB_COMPONENTS)/gki/ulinux \
|
|
$(VOB_COMPONENTS)/gki/common
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libicuuc \
|
|
libnativehelper \
|
|
libcutils \
|
|
libutils \
|
|
liblog \
|
|
libnfc-nci \
|
|
|
|
LOCAL_STATIC_LIBRARIES := libxml2
|
|
|
|
LOCAL_MODULE := libnfc_nci_jni
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|