9ab372eb22
Useful for wifi bringup. Change-Id: Ib1d1b1d15cb9ce57119457a780e169b8f98987c2
26 lines
500 B
Makefile
26 lines
500 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
dhcpclient.c \
|
|
dhcpmsg.c \
|
|
dhcp_utils.c \
|
|
ifc_utils.c \
|
|
packet.c
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
liblog
|
|
|
|
LOCAL_MODULE := libnetutils
|
|
|
|
LOCAL_CFLAGS := -Werror
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := dhcptool.c
|
|
LOCAL_SHARED_LIBRARIES := libnetutils
|
|
LOCAL_MODULE := dhcptool
|
|
LOCAL_MODULE_TAGS := debug
|
|
include $(BUILD_EXECUTABLE)
|