blob: ae3938de9bd33089f32f007e11ff7f8985f82b60 [file] [log] [blame]
Amit Daniel Kachhap44549432011-07-20 14:21:22 +05301LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES := $(call all-c-files-under, ncurses/tty)
6LOCAL_SRC_FILES += $(call all-c-files-under, ncurses/base)
7
8
9ncurses/tty/hardscroll.c \
10 ncurses/tty/hashmap.c \
11 ncurses/tty/lib_mvcur.c \
12 ncurses/tty/lib_tstp.c \
13 ncurses/tty/lib_twait.c \
14 ncurses/tty/lib_vidattr.c \
15 ncurses/tty/tty_update.c \
16
17 ncurses/tty/*.c
18
19 ncurses/base/*.c
20
21
22
23 \
24 lib/doc.c \
25 lib/cache_mngr.c \
26 lib/addr.c \
27 lib/socket.c \
28 lib/fib_lookup/lookup.c \
29 lib/fib_lookup/request.c \
30 lib/msg.c \
31 lib/object.c \
32 lib/attr.c \
33 lib/utils.c \
34 lib/cache_mngt.c \
35 lib/handlers.c \
36 lib/genl/ctrl.c \
37 lib/genl/mngt.c \
38 lib/genl/family.c \
39 lib/genl/genl.c \
40 lib/route/rtnl.c \
41 lib/route/route_utils.c
42
43#LOCAL_CFLAGS :=
44LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
45 #kernel/android-2.6.32/include
46
47LOCAL_MODULE_TAGS := eng
48LOCAL_MODULE := libnl
49
50include $(BUILD_SHARED_LIBRARY)
51#include $(BUILD_STATIC_LIBRARY)
52