The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | ifneq ($(BUILD_TINY_ANDROID),true) |
| 2 | LOCAL_PATH:= $(call my-dir) |
| 3 | |
| 4 | include $(CLEAR_VARS) |
| 5 | LOCAL_SRC_FILES:= netcfg.c |
| 6 | LOCAL_MODULE:= netcfg |
| 7 | |
| 8 | #LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 9 | #LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN) |
| 10 | #LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_SBIN_UNSTRIPPED) |
| 11 | #LOCAL_STATIC_LIBRARIES := libcutils libc |
| 12 | |
| 13 | LOCAL_SHARED_LIBRARIES := libc libnetutils |
Mark Salyzyn | c9303f3 | 2014-04-30 15:52:16 -0700 | [diff] [blame] | 14 | LOCAL_CFLAGS := -Werror |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 15 | |
| 16 | include $(BUILD_EXECUTABLE) |
| 17 | endif |