2009-03-04 11:32:55 +08:00
|
|
|
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= netcfg.c
|
|
|
|
LOCAL_MODULE:= netcfg
|
|
|
|
|
|
|
|
#LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
|
|
#LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN)
|
|
|
|
#LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_SBIN_UNSTRIPPED)
|
|
|
|
#LOCAL_STATIC_LIBRARIES := libcutils libc
|
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := libc libnetutils
|
2014-05-01 06:52:16 +08:00
|
|
|
LOCAL_CFLAGS := -Werror
|
2009-03-04 11:32:55 +08:00
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|