Move the lpwsinc and bpwsinc elements from gst-plugins-bad into the audiofx plugin...
[platform/upstream/gst-plugins-good.git] / gst / audiofx / Makefile.am
1 # plugindir is set in configure
2
3 plugin_LTLIBRARIES = libgstaudiofx.la
4
5 # sources used to compile this plug-in
6 libgstaudiofx_la_SOURCES = audiofx.c\
7         audiopanorama.c \
8         audioinvert.c \
9         audioamplify.c \
10         audiodynamic.c \
11         audiocheblimit.c \
12         audiochebband.c \
13         audiowsincband.c \
14         audiowsinclimit.c
15
16 # flags used to compile this plugin
17 libgstaudiofx_la_CFLAGS = $(GST_CFLAGS) \
18         $(GST_BASE_CFLAGS) \
19         $(GST_CONTROLLER_CFLAGS) \
20         $(GST_PLUGINS_BASE_CFLAGS)
21 libgstaudiofx_la_LIBADD = $(GST_LIBS) \
22         $(GST_BASE_LIBS) \
23         $(GST_CONTROLLER_LIBS) \
24         $(GST_PLUGINS_BASE_LIBS) \
25         -lgstaudio-$(GST_MAJORMINOR) \
26         $(LIBM)
27 libgstaudiofx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
28
29 # headers we need but don't want installed
30 noinst_HEADERS = audiopanorama.h \
31         audioinvert.h \
32         audioamplify.h \
33         audiodynamic.h \
34         audiocheblimit.h \
35         audiochebband.h
36