blob: 24b043ee3d6c5efa05c268fe1a4455019c3305e9 [file] [log] [blame]
Doug Zongker9270a202012-01-09 15:16:13 -08001# Copyright 2005 The Android Open Source Project
Doug Zongker9270a202012-01-09 15:16:13 -08002
3LOCAL_PATH:= $(call my-dir)
4
Doug Zongker9270a202012-01-09 15:16:13 -08005include $(CLEAR_VARS)
6
7LOCAL_SRC_FILES := \
Dan Albert8f6eb5c2015-02-24 22:07:18 -08008 adb_main.c \
9 fuse_adb_provider.c \
10 services.c \
Doug Zongker9270a202012-01-09 15:16:13 -080011
Dan Albert8f6eb5c2015-02-24 22:07:18 -080012LOCAL_CFLAGS := \
13 -Wall -Werror \
14 -Wno-unused-parameter \
15 -Wimplicit-function-declaration \
Dan Albert8f6eb5c2015-02-24 22:07:18 -080016 -DADB_HOST=0 \
17
Dan Albert1ddd3502015-02-18 15:58:15 -080018LOCAL_C_INCLUDES := bootable/recovery system/core/adb
Dan Albertf3a57262015-02-19 13:21:14 -080019LOCAL_WHOLE_STATIC_LIBRARIES := libadbd
Doug Zongker9270a202012-01-09 15:16:13 -080020
21LOCAL_MODULE := libminadbd
22
Doug Zongker9270a202012-01-09 15:16:13 -080023include $(BUILD_STATIC_LIBRARY)