summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2007-11-20 12:56:00 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2007-11-20 12:56:00 +0000
commit10f5d4263221990071cf37c30805b463f3e97d6c (patch)
tree0be2f948ed236949de113ac57d12219e61136d2b /gst
parent854472e0a4f08f43024688def407fa01f158492e (diff)
downloadgst-plugins-bad-10f5d4263221990071cf37c30805b463f3e97d6c.tar.gz
gst-plugins-bad-10f5d4263221990071cf37c30805b463f3e97d6c.tar.bz2
gst-plugins-bad-10f5d4263221990071cf37c30805b463f3e97d6c.zip
gst/speexresample/Makefile.am: Add missing file.
Original commit message from CVS: * gst/speexresample/Makefile.am: Add missing file.
Diffstat (limited to 'gst')
-rw-r--r--gst/speexresample/Makefile.am30
1 files changed, 30 insertions, 0 deletions
diff --git a/gst/speexresample/Makefile.am b/gst/speexresample/Makefile.am
new file mode 100644
index 00000000..32cdb911
--- /dev/null
+++ b/gst/speexresample/Makefile.am
@@ -0,0 +1,30 @@
+plugin_LTLIBRARIES = libgstspeexresample.la
+
+libgstspeexresample_la_SOURCES = \
+ gstspeexresample.c \
+ speex_resampler_int.c \
+ speex_resampler_float.c
+
+libgstspeexresample_la_CFLAGS = \
+ $(GST_PLUGINS_BASE_CFLAGS) \
+ $(GST_BASE_CFLAGS) \
+ $(GST_CFLAGS)
+
+libgstspeexresample_la_LIBADD = \
+ $(GST_PLUGINS_BASE_LIBS) \
+ $(GST_BASE_LIBS) \
+ $(GST_LIBS) \
+ -lgstaudio-$(GST_MAJORMINOR) \
+ $(LIBM)
+
+libgstspeexresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
+
+noinst_HEADERS = \
+ arch.h \
+ fixed_generic.h \
+ gstspeexresample.h \
+ speex_resampler.h
+
+EXTRA_DIST = \
+ resample.c
+