diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2007-08-23 19:12:23 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2007-08-23 19:12:23 +0000 |
commit | 0a527f667ae62ac335f22d1d053179b20ff26e94 (patch) | |
tree | 9b4b85a92c9c95005a54660b21da7cb05102ee34 /audio/Makefile.am | |
parent | 2ec3960a534fe2e8e0d63cc3600ef1fd90505b0d (diff) |
Add SBC encoder and decoder skeletons for GStreamer
Diffstat (limited to 'audio/Makefile.am')
-rw-r--r-- | audio/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/audio/Makefile.am b/audio/Makefile.am index f5eb30e9..240c737f 100644 --- a/audio/Makefile.am +++ b/audio/Makefile.am @@ -37,9 +37,12 @@ endif if GSTREAMER gstreamerdir = $(libdir)/gstreamer-0.10 -noinst_LTLIBRARIES = libgstbluetooth.la +gstreamer_LTLIBRARIES = libgstbluetooth.la -libgstbluetooth_la_SOURCES = gstbluetooth.c gsta2dpsink.h gsta2dpsink.c ipc.h +libgstbluetooth_la_SOURCES = gstbluetooth.c ipc.h \ + gstsbcdec.h gstsbcdec.c \ + gstsbcenc.h gstsbcenc.c \ + gsta2dpsink.h gsta2dpsink.c libgstbluetooth_la_LDFLAGS = -module -avoid-version -export-dynamic libgstbluetooth_la_LIBADD = @SBC_LIBS@ @GSTREAMER_LIBS@ -lgstaudio-0.10 libgstbluetooth_la_CFLAGS = @GSTREAMER_CFLAGS@ @SBC_CFLAGS@ |