blob: 34708cfe626bd1de374467275df220938224fb48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# plugindir is set in configure
plugin_LTLIBRARIES = libgstaudiofxgood.la
# sources used to compile this plug-in
libgstaudiofxgood_la_SOURCES = audiofx.c\
audiopanorama.c
# flags used to compile this plugin
libgstaudiofxgood_la_CFLAGS = $(GST_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_CONTROLLER_CFLAGS)
libgstaudiofxgood_la_LIBADD = $(GST_LIBS) \
$(GST_BASE_LIBS) \
$(GST_CONTROLLER_LIBS)
libgstaudiofxgood_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
# headers we need but don't want installed
noinst_HEADERS = audiopanorama.h
|