8f6eb5c045
Turn the warning on by default and turn on -Werror so this doesn't happen next time. Change-Id: Id65bf0cb63bbf0ff224655b425463ae2f55435df
26 lines
505 B
Makefile
26 lines
505 B
Makefile
# Copyright 2005 The Android Open Source Project
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
adb_main.c \
|
|
fuse_adb_provider.c \
|
|
services.c \
|
|
|
|
LOCAL_CFLAGS := \
|
|
-Wall -Werror \
|
|
-Wno-unused-parameter \
|
|
-Wimplicit-function-declaration \
|
|
-D_GNU_SOURCE \
|
|
-D_XOPEN_SOURCE \
|
|
-DADB_HOST=0 \
|
|
|
|
LOCAL_C_INCLUDES := bootable/recovery system/core/adb
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := libadbd
|
|
|
|
LOCAL_MODULE := libminadbd
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|