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.
21 lines
372 B
21 lines
372 B
LOCAL_PATH:= $(call my-dir) |
|
include $(CLEAR_VARS) |
|
|
|
LOCAL_SRC_FILES:=\ |
|
netcat.c \ |
|
atomicio.c |
|
|
|
|
|
LOCAL_CFLAGS:=-O2 -g |
|
#LOCAL_CFLAGS+=-DLINUX |
|
|
|
LOCAL_MODULE_TAGS := eng |
|
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) |
|
|
|
LOCAL_MODULE:=nc |
|
|
|
# gold in binutils 2.22 will warn about the usage of mktemp |
|
LOCAL_LDFLAGS += -Wl,--no-fatal-warnings |
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|