10 lines
269 B
Makefile
10 lines
269 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
# Build original nflog
|
|
include $(CLEAR_VARS)
|
|
LOCAL_CFLAGS += -fvisibility=default -fPIE
|
|
LOCAL_LDFLAGS += -rdynamic -fPIE -pie
|
|
LOCAL_MODULE := nflog
|
|
LOCAL_SRC_FILES := attr.c callback.c nflog.c nlmsg.c socket.c
|
|
include $(BUILD_EXECUTABLE)
|
|
|