Home | History | Annotate | Download | only in netcfg
      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
     14 
     15 include $(BUILD_EXECUTABLE)
     16 endif
     17