summaryrefslogtreecommitdiffstats
path: root/cnd/src/Android.mk
blob: 5d126805609df0a0cfab00ea291666046cb8d7c0 (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
# 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_SHARED_LIBRARIES := \
        libutils \
        libcutils \
        libhardware_legacy \

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

LOCAL_CFLAGS := -UNDEBUG -DDEBUG

include external/connectivity/stlport/libstlport.mk

include $(BUILD_EXECUTABLE)

# vim: et