1# plugindir is set in configure
2
3plugin_LTLIBRARIES = libgstaudiofx.la
4
5# FIXME 0.11: ignore GValueArray warnings for now until this is sorted
6ERROR_CFLAGS=
7
8ORC_SOURCE=audiopanoramaorc
9include $(top_srcdir)/common/orc.mak
10
11# sources used to compile this plug-in
12libgstaudiofx_la_SOURCES = audiofx.c\
13	audiopanorama.c \
14	audioinvert.c \
15	audioamplify.c \
16	audiodynamic.c \
17	audiokaraoke.c \
18	audiofxbaseiirfilter.c \
19	audiocheblimit.c \
20	audiochebband.c \
21	audioiirfilter.c \
22	audiofxbasefirfilter.c \
23	audiowsincband.c \
24	audiowsinclimit.c \
25	audiofirfilter.c \
26	audioecho.c \
27	gstscaletempo.c \
28	gststereo.c
29nodist_libgstaudiofx_la_SOURCES = $(ORC_NODIST_SOURCES)
30
31# flags used to compile this plugin
32libgstaudiofx_la_CFLAGS = $(GST_CFLAGS) \
33	$(GST_BASE_CFLAGS) \
34	$(GST_PLUGINS_BASE_CFLAGS) \
35	$(ORC_CFLAGS)
36libgstaudiofx_la_LIBADD = $(GST_LIBS) \
37	$(GST_BASE_LIBS) \
38	$(GST_PLUGINS_BASE_LIBS) \
39	-lgstaudio-$(GST_API_VERSION) \
40	-lgstfft-$(GST_API_VERSION) \
41	$(ORC_LIBS) \
42	$(LIBM)
43libgstaudiofx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
44
45# headers we need but don't want installed
46noinst_HEADERS = audiopanorama.h \
47	audioinvert.h \
48	audioamplify.h \
49	audiodynamic.h \
50	audiokaraoke.h \
51	audiofxbaseiirfilter.h \
52	audiocheblimit.h \
53	audiochebband.h \
54	audioiirfilter.h \
55	audiofxbasefirfilter.h \
56	audiowsincband.h \
57        audiowsinclimit.h \
58	audiofirfilter.h \
59	audioecho.h \
60	gstscaletempo.h \
61	gststereo.h \
62	math_compat.h
63