summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Android.mk27
1 files changed, 0 insertions, 27 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 0636929..0000000
--- a/Android.mk
+++ /dev/null
@@ -1,27 +0,0 @@
-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)