f3a5726919
I think everything left now is here to stay (services.c might get massaged in to libadbd if it gets refactored). Bug: 17626262 Change-Id: I01faf8b277a601a40e3a0f4c3b8206c97f1d2ce6
26 lines
544 B
Makefile
26 lines
544 B
Makefile
# Copyright 2005 The Android Open Source Project
|
|
#
|
|
# Android.mk for adb
|
|
#
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
# minadbd library
|
|
# =========================================================
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
adb_main.c \
|
|
fuse_adb_provider.c \
|
|
services.c \
|
|
|
|
LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter
|
|
LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
|
|
LOCAL_C_INCLUDES := bootable/recovery system/core/adb
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := libadbd
|
|
|
|
LOCAL_MODULE := libminadbd
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|