-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathAndroid.mk
More file actions
48 lines (41 loc) · 799 Bytes
/
Android.mk
File metadata and controls
48 lines (41 loc) · 799 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
bitrate.c \
connect.c \
cqm.c \
event.c \
genl.c \
ibss.c \
info.c \
interface.c \
iw.c \
link.c \
mesh.c \
mpath.c \
offch.c \
phy.c \
ps.c \
reason.c \
reg.c \
scan.c \
sections.c \
station.c \
status.c \
survey.c \
util.c \
version.c
LOCAL_C_INCLUDES := \
$(LOCAL_PATH) \
external/libnl/include
LOCAL_NO_DEFAULT_COMPILER_FLAGS := true
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../libnl/include \
$(TARGET_PROJECT_INCLUDES) $(TARGET_C_INCLUDES)
LOCAL_CFLAGS := $(TARGET_GLOBAL_CFLAGS) $(PRIVATE_ARM_CFLAGS)
LOCAL_SHARED_LIBRARIES += libnl
LOCAL_MODULE := iw
LOCAL_LDFLAGS := -Wl,--no-gc-sections
LOCAL_MODULE_TAGS := eng
LOCAL_SHARED_LIBRARIES := libnl
LOCAL_MODULE := iw
include $(BUILD_EXECUTABLE)