blob: 06369292cf3cccbe0fd786afd97d7079b1975c72 [file] [log] [blame]
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:=\
netcat.c \
atomicio.c
LOCAL_CFLAGS:= \
-O2 -g \
-Wall -Werror \
-Wno-deprecated-declarations \
-Wno-sign-compare \
-Wno-unused-variable \
#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)