Return-Path: From: Andrei Emeltchenko To: linux-bluetooth@vger.kernel.org Subject: [PATCHv6 4/5] build: Add BlueZ Android daemon Date: Fri, 4 Oct 2013 14:48:46 +0300 Message-Id: <1380887327-6652-5-git-send-email-Andrei.Emeltchenko.news@gmail.com> In-Reply-To: <1380887327-6652-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> References: <1380887327-6652-1-git-send-email-Andrei.Emeltchenko.news@gmail.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Frederic Danis --- .gitignore | 2 ++ Makefile.android | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 8a25a3e..3707209 100644 --- a/.gitignore +++ b/.gitignore @@ -98,3 +98,5 @@ unit/test-gobex-packet unit/test-gobex-transfer unit/test-*.log unit/test-*.trs + +android/bluetoothd diff --git a/Makefile.android b/Makefile.android index 56fa9a7..e792c10 100644 --- a/Makefile.android +++ b/Makefile.android @@ -1 +1,8 @@ +if ANDROID +noinst_PROGRAMS += android/bluetoothd + +android_bluetoothd_SOURCES = android/main.c +android_bluetoothd_LDADD = @GLIB_LIBS@ +endif + EXTRA_DIST += android/Android.mk -- 1.7.10.4