summaryrefslogtreecommitdiffstats
path: root/cnd/src/Android.mk
blob: 45487730a039b899a7b9bb312932f16d2bf81ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# For cnd binary
# =======================
LOCAL_PATH:= $(call my-dir)

include $(CLEAR_VARS)

LOCAL_SRC_FILES:= \
        cnd.c \
        cnd_event.cpp \
        cnd_process.cpp \
        cnd_iproute2.cpp

LOCAL_MODULE:= cnd

LOCAL_MODULE_TAGS := optional

LOCAL_SHARED_LIBRARIES := \
        libutils \
        libbinder \
        libcutils \
        libdl \
        libhardware_legacy \

LOCAL_C_INCLUDES := \
        external/connectivity/cnd/inc  \
        external/connectivity/include/cne

include external/connectivity/stlport/libstlport.mk

include $(BUILD_EXECUTABLE)
# vim: et