blob: 0cba0c5f1a9c5a8a882e1bea50b268ef3b3aaeca [file] [log] [blame]
Doug Zongker9270a202012-01-09 15:16:13 -08001# Copyright 2005 The Android Open Source Project
2#
3# Android.mk for adb
4#
5
6LOCAL_PATH:= $(call my-dir)
7
8# minadbd library
9# =========================================================
10
11include $(CLEAR_VARS)
12
13LOCAL_SRC_FILES := \
14 adb.c \
Dan Albert9a894b72015-02-18 18:36:08 -080015 adb_main.c \
Doug Zongker18a78e02014-07-10 07:31:46 -070016 fuse_adb_provider.c \
Doug Zongker9270a202012-01-09 15:16:13 -080017 sockets.c \
18 services.c \
Doug Zongker9270a202012-01-09 15:16:13 -080019
20LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter
21LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
Dan Albert1ddd3502015-02-18 15:58:15 -080022LOCAL_C_INCLUDES := bootable/recovery system/core/adb
Doug Zongker9270a202012-01-09 15:16:13 -080023
24LOCAL_MODULE := libminadbd
25
Doug Zongker9270a202012-01-09 15:16:13 -080026include $(BUILD_STATIC_LIBRARY)