You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
376 B

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
include $(LOCAL_PATH)/android.config
INCLUDES = $(LOCAL_PATH)
INCLUDES += external/libnl/include
ifdef HAVE_LIBNL20
LOCAL_CFLAGS += -DHAVE_LIBNL20
endif
########################
LOCAL_SRC_FILES:= nfacct.c
LOCAL_MODULE := nfacct
LOCAL_SHARED_LIBRARIES += libnl
LOCAL_C_INCLUDES := $(INCLUDES)
include $(BUILD_EXECUTABLE)