c829080ba9
- Get rid of a pair of out of range comparison warnings. - Turn on -Werror for compilation Change-Id: Ie6754f41f9348852a02cc0ff35befb5a76ac2883
19 lines
329 B
Makefile
19 lines
329 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)
|