summaryrefslogtreecommitdiffstats
path: root/netcfg/Android.mk
blob: 949f4172822535be968fa480771afd1a719a25c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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

include $(BUILD_EXECUTABLE)
endif