blob: 6439dfccf2dc306a27128870d19773335bf9ee57 [file] [log] [blame]
Sharvil Nanavati1f8c2352014-08-13 01:14:49 -07001#
Jakub Pawlowski5b790fe2017-09-18 09:00:20 -07002# Copyright 2014 The Android Open Source Project
Sharvil Nanavati1f8c2352014-08-13 01:14:49 -07003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH := $(call my-dir)
18
Pavlin Radoslavov1377f932016-02-11 19:44:47 -080019# Bluetooth HCI tools for target
20# ========================================================
Sharvil Nanavati1f8c2352014-08-13 01:14:49 -070021include $(CLEAR_VARS)
22
23LOCAL_MODULE_TAGS := optional
Sharvil Nanavati61683572014-12-29 00:56:46 -080024LOCAL_MODULE := net_hci
Sharvil Nanavati1f8c2352014-08-13 01:14:49 -070025
26LOCAL_SRC_FILES := main.c
27LOCAL_STATIC_LIBRARIES := libosi
Sharvil Nanavati0f9b91e2015-03-12 15:42:50 -070028LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../
Sharvil Nanavati1f8c2352014-08-13 01:14:49 -070029
Pavlin Radoslavov1377f932016-02-11 19:44:47 -080030LOCAL_CFLAGS += $(bluetooth_CFLAGS)
31LOCAL_CONLYFLAGS += $(bluetooth_CONLYFLAGS)
32LOCAL_CPPFLAGS += $(bluetooth_CPPFLAGS)
33
Sharvil Nanavati1f8c2352014-08-13 01:14:49 -070034include $(BUILD_EXECUTABLE)