mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-29 23:24:20 +08:00
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
|
|
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
|
|
|
|
if ALSA
|
|
alsadir = $(libdir)/alsa-lib
|
|
|
|
alsa_LTLIBRARIES = libasound_module_pcm_bluetooth.la libasound_module_ctl_bluetooth.la
|
|
|
|
libasound_module_pcm_bluetooth_la_SOURCES = pcm_bluetooth.c
|
|
libasound_module_pcm_bluetooth_la_LDFLAGS = -module -avoid-version -export-dynamic
|
|
libasound_module_pcm_bluetooth_la_LIBADD = @ALSA_LIBS@
|
|
|
|
libasound_module_ctl_bluetooth_la_SOURCES = ctl_bluetooth.c
|
|
libasound_module_ctl_bluetooth_la_LDFLAGS = -module -avoid-version -export-dynamic
|
|
libasound_module_ctl_bluetooth_la_LIBADD = @ALSA_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@ @ALSA_CFLAGS@ @SBC_CFLAGS@
|
|
|
|
INCLUDES = -I$(top_srcdir)/common
|
|
|
|
EXTRA_DIST = headset.service audio-api.txt
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|