blob: c3d828363e005373c909d80a958b06700052b79a [file] [log] [blame]
Mathieu Poirierc66949f2013-12-12 09:50:55 -07001LOCAL_PATH:= $(call my-dir)
Mathieu Poirier6f7aae02013-12-20 12:18:31 -07002include $(CLEAR_VARS)
3include $(LOCAL_PATH)/android.config
Mathieu Poirierc66949f2013-12-12 09:50:55 -07004
5INCLUDES = $(LOCAL_PATH)
6INCLUDES += external/libnl/include
Mathieu Poirier6f7aae02013-12-20 12:18:31 -07007
Chih-Hung Hsieh3730e972017-10-11 13:30:41 -07008LOCAL_CFLAGS := \
9 -Wall -Werror \
10 -Wno-format \
11 -Wno-unused-parameter \
12 -Wno-unused-variable \
13
Mathieu Poirier6f7aae02013-12-20 12:18:31 -070014ifdef HAVE_LIBNL20
15LOCAL_CFLAGS += -DHAVE_LIBNL20
16endif
Mathieu Poirierc66949f2013-12-12 09:50:55 -070017
18########################
Mathieu Poirier6f7aae02013-12-20 12:18:31 -070019
Mathieu Poirierc66949f2013-12-12 09:50:55 -070020LOCAL_SRC_FILES:= nfacct.c
21LOCAL_MODULE := nfacct
22
23LOCAL_SHARED_LIBRARIES += libnl
24LOCAL_C_INCLUDES := $(INCLUDES)
25
26include $(BUILD_EXECUTABLE)