summaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..a72a64c
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,15 @@
+LOCAL_PATH:= $(call my-dir)
+
+INCLUDES = $(LOCAL_PATH)
+INCLUDES += external/libnl/include
+LIBS += -lnl-3
+
+########################
+include $(CLEAR_VARS)
+LOCAL_SRC_FILES:= nfacct.c
+LOCAL_MODULE := nfacct
+
+LOCAL_SHARED_LIBRARIES += libnl
+LOCAL_C_INCLUDES := $(INCLUDES)
+
+include $(BUILD_EXECUTABLE)