4cf34d5d29
Looks like the mips64 linker isn't as good as the others at GCing
unused stuff, which means it needs libcutils.
Change-Id: I5f768e44514350fb81e5360351db3e9cc4201702
(cherry picked from commit dbb20c4863
)
37 lines
912 B
Makefile
37 lines
912 B
Makefile
# Copyright 2005 The Android Open Source Project
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
minadbd_cflags := \
|
|
-Wall -Werror \
|
|
-Wno-unused-parameter \
|
|
-Wno-missing-field-initializers \
|
|
-DADB_HOST=0 \
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
adb_main.cpp \
|
|
fuse_adb_provider.cpp \
|
|
services.cpp \
|
|
|
|
LOCAL_MODULE := libminadbd
|
|
LOCAL_CFLAGS := $(minadbd_cflags)
|
|
LOCAL_CONLY_FLAGS := -Wimplicit-function-declaration
|
|
LOCAL_C_INCLUDES := bootable/recovery system/core/adb
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := libadbd
|
|
LOCAL_STATIC_LIBRARIES := libbase
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CLANG := true
|
|
LOCAL_MODULE := minadbd_test
|
|
LOCAL_SRC_FILES := fuse_adb_provider_test.cpp
|
|
LOCAL_CFLAGS := $(minadbd_cflags)
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH) system/core/adb
|
|
LOCAL_STATIC_LIBRARIES := libminadbd
|
|
LOCAL_SHARED_LIBRARIES := liblog libbase libcutils
|
|
|
|
include $(BUILD_NATIVE_TEST)
|