diff options
Diffstat (limited to 'gst/audiofx/Makefile.am')
-rw-r--r-- | gst/audiofx/Makefile.am | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/gst/audiofx/Makefile.am b/gst/audiofx/Makefile.am new file mode 100644 index 0000000..c943e20 --- /dev/null +++ b/gst/audiofx/Makefile.am @@ -0,0 +1,66 @@ +# plugindir is set in configure + +plugin_LTLIBRARIES = libgstaudiofx.la + +# sources used to compile this plug-in +libgstaudiofx_la_SOURCES = audiofx.c\ + audiopanorama.c \ + audioinvert.c \ + audioamplify.c \ + audiodynamic.c \ + audiokaraoke.c \ + audiofxbaseiirfilter.c \ + audiocheblimit.c \ + audiochebband.c \ + audioiirfilter.c \ + audiofxbasefirfilter.c \ + audiowsincband.c \ + audiowsinclimit.c \ + audiofirfilter.c \ + audioecho.c + +# flags used to compile this plugin +libgstaudiofx_la_CFLAGS = $(GST_CFLAGS) \ + $(GST_BASE_CFLAGS) \ + $(GST_CONTROLLER_CFLAGS) \ + $(GST_PLUGINS_BASE_CFLAGS) +libgstaudiofx_la_LIBADD = $(GST_LIBS) \ + $(GST_BASE_LIBS) \ + $(GST_CONTROLLER_LIBS) \ + $(GST_PLUGINS_BASE_LIBS) \ + -lgstaudio-$(GST_MAJORMINOR) \ + -lgstfft-$(GST_MAJORMINOR) \ + $(LIBM) +libgstaudiofx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) +libgstaudiofx_la_LIBTOOLFLAGS = --tag=disable-static + +# headers we need but don't want installed +noinst_HEADERS = audiopanorama.h \ + audioinvert.h \ + audioamplify.h \ + audiodynamic.h \ + audiokaraoke.h \ + audiofxbaseiirfilter.h \ + audiocheblimit.h \ + audiochebband.h \ + audioiirfilter.h \ + audiofxbasefirfilter.h \ + audiowsincband.h \ + audiowsinclimit.h \ + audiofirfilter.h \ + audioecho.h \ + math_compat.h + +Android.mk: Makefile.am $(BUILT_SOURCES) + androgenizer \ + -:PROJECT libgstaudiofx -:SHARED libgstaudiofx \ + -:TAGS eng debug \ + -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \ + -:SOURCES $(libgstaudiofx_la_SOURCES) \ + -:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(libgstaudiofx_la_CFLAGS) \ + -:LDFLAGS $(libgstaudiofx_la_LDFLAGS) \ + $(libgstaudiofx_la_LIBADD) \ + -ldl \ + -:PASSTHROUGH LOCAL_ARM_MODE:=arm \ + LOCAL_MODULE_PATH:='$$(TARGET_OUT)/lib/gstreamer-0.10' \ + > $@ |