mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
3b4f4554a6
Original commit message from CVS: * configure.ac: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/inspect/plugin-audiofx.xml: * docs/plugins/inspect/plugin-audiofxgood.xml: * gst/audiofx/Makefile.am: * gst/audiofx/audiofx.c: * gst/audiofxgood/.cvsignore: * gst/audiofxgood/Makefile.am: * gst/audiofxgood/audiofx.c: * gst/audiofxgood/audiopanorama.c: * gst/audiofxgood/audiopanorama.h: Rename again (audiofxgood -> audiofx).
19 lines
503 B
Makefile
19 lines
503 B
Makefile
# plugindir is set in configure
|
|
|
|
plugin_LTLIBRARIES = libgstaudiofx.la
|
|
|
|
# sources used to compile this plug-in
|
|
libgstaudiofx_la_SOURCES = audiofx.c\
|
|
audiopanorama.c
|
|
|
|
# flags used to compile this plugin
|
|
libgstaudiofx_la_CFLAGS = $(GST_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CONTROLLER_CFLAGS)
|
|
libgstaudiofx_la_LIBADD = $(GST_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_CONTROLLER_LIBS)
|
|
libgstaudiofx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = audiopanorama.h
|