nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | LOCAL_PATH:= $(call my-dir) |
2 | |||
3 | libpcap_cflags := \ |
||
4 | -Wno-unused-parameter \ |
||
5 | -D_U_="__attribute__((unused))" \ |
||
6 | -Werror \ |
||
7 | |||
8 | include $(CLEAR_VARS) |
||
9 | |||
10 | LOCAL_SRC_FILES := \ |
||
11 | pcap-linux.c pcap-usb-linux.c pcap-can-linux.c pcap-netfilter-linux.c pcap-netfilter-linux-android.c \ |
||
12 | fad-gifc.c \ |
||
13 | pcap.c inet.c gencode.c optimize.c nametoaddr.c etherent.c \ |
||
14 | savefile.c sf-pcap.c sf-pcap-ng.c pcap-common.c \ |
||
15 | bpf/net/bpf_filter.c bpf_image.c bpf_dump.c \ |
||
16 | version.c \ |
||
17 | |||
18 | # Generated on the host with `configure && make` and copied across. |
||
19 | LOCAL_SRC_FILES += grammar.c |
||
20 | LOCAL_SRC_FILES += scanner.c |
||
21 | |||
22 | LOCAL_CFLAGS += $(libpcap_cflags) |
||
23 | LOCAL_CFLAGS += -Wno-sign-compare |
||
24 | LOCAL_CFLAGS += -DHAVE_CONFIG_H |
||
25 | LOCAL_CFLAGS += -include strings.h # For ffs(3). |
||
26 | |||
27 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH) |
||
28 | |||
29 | LOCAL_MODULE:= libpcap |
||
30 | |||
31 | include $(BUILD_STATIC_LIBRARY) |