blob: 0f1634bb24fc5da9389f6da1a7777b1f3afee2e4 [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 \
Doug Zongker18a78e02014-07-10 07:31:46 -070015 fuse_adb_provider.c \
Doug Zongker9270a202012-01-09 15:16:13 -080016 sockets.c \
17 services.c \
Doug Zongker9270a202012-01-09 15:16:13 -080018
19LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter
20LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
Doug Zongker18a78e02014-07-10 07:31:46 -070021LOCAL_C_INCLUDES += bootable/recovery
Doug Zongker9270a202012-01-09 15:16:13 -080022
23LOCAL_MODULE := libminadbd
24
Doug Zongker9270a202012-01-09 15:16:13 -080025include $(BUILD_STATIC_LIBRARY)