This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
ifneq ($(TARGET_SIMULATOR),true) |
| 2 |
|
| 3 |
LOCAL_PATH:= $(call my-dir) |
| 4 |
include $(CLEAR_VARS) |
| 5 |
|
| 6 |
LOCAL_SRC_FILES:=\ |
| 7 |
netcat.c |
| 8 |
|
| 9 |
LOCAL_CFLAGS:=-O2 -g |
| 10 |
#LOCAL_CFLAGS+=-DLINUX |
| 11 |
|
| 12 |
LOCAL_MODULE_TAGS := eng |
| 13 |
|
| 14 |
LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES) |
| 15 |
|
| 16 |
LOCAL_MODULE:=nc |
| 17 |
|
| 18 |
include $(BUILD_EXECUTABLE) |
| 19 |
|
| 20 |
endif # TARGET_SIMULATOR != true |