blob: 4de6d59fe94694258b4607b086250fa12250f047 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
if HEADSETSERVICE
if CONFIGFILES
confdir = $(sysconfdir)/bluetooth
conf_DATA = headset.service
endif
servicedir = $(libdir)/bluetooth
service_PROGRAMS = bluetoothd-service-headset
bluetoothd_service_headset_SOURCES = headset.c
bluetoothd_service_headset_LDADD = $(top_builddir)/common/libhelper.a \
@GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@
endif
noinst_PROGRAMS = bluetoothd-service-audio
bluetoothd_service_audio_SOURCES = main.c manager.h manager.c
bluetoothd_service_audio_LDADD = $(top_builddir)/common/libhelper.a \
@SBC_LIBS@ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @SBC_CFLAGS@
INCLUDES = -I$(top_srcdir)/common
EXTRA_DIST = headset.service audio-api.txt
MAINTAINERCLEANFILES = Makefile.in
|