summaryrefslogtreecommitdiffstats
path: root/audio/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'audio/Makefile.am')
-rw-r--r--audio/Makefile.am20
1 files changed, 14 insertions, 6 deletions
diff --git a/audio/Makefile.am b/audio/Makefile.am
index d9f12f87..290633fb 100644
--- a/audio/Makefile.am
+++ b/audio/Makefile.am
@@ -1,15 +1,17 @@
+BUILT_SOURCES = telephony.c
+
if AUDIOPLUGIN
plugindir = $(libdir)/bluetooth/plugins
plugin_LTLIBRARIES = audio.la
audio_la_SOURCES = main.c \
- manager.h manager.c headset.h headset.c \
- ipc.h ipc.c unix.h unix.c \
- device.h device.c gateway.h gateway.c \
- sink.c sink.h avdtp.c avdtp.h \
- a2dp.c a2dp.h control.c control.h
+ ipc.h ipc.c unix.h unix.c manager.h manager.c telephony.h \
+ device.h device.c headset.h headset.c gateway.h gateway.c \
+ avdtp.h avdtp.c a2dp.h a2dp.c sink.h sink.c control.h control.c
+
+nodist_audio_la_SOURCES = $(BUILT_SOURCES)
audio_la_LDFLAGS = -module -avoid-version -no-undefined \
-export-symbols-regex bluetooth_plugin_desc
@@ -55,8 +57,14 @@ endif
AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ @GLIB_CFLAGS@ @GDBUS_CFLAGS@
+CLEANFILES = $(BUILT_SOURCES)
+
INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/src
-EXTRA_DIST = audio.conf audio-api.txt test-audio asound.conf
+EXTRA_DIST = audio.conf audio-api.txt test-audio asound.conf \
+ telephony-dummy.c
MAINTAINERCLEANFILES = Makefile.in
+
+telephony.c: @TELEPHONY_DRIVER@
+ @if [ ! -e $@ ] ; then $(LN_S) $< $@ ; fi