diff options
Diffstat (limited to 'gst')
-rw-r--r-- | gst/speexresample/Makefile.am | 30 |
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 + |