mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
32621485d5
Original commit message from CVS: * gst/audiofx/Makefile.am: Dist the right file.
34 lines
825 B
Makefile
34 lines
825 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 \
|
|
audioinvert.c \
|
|
audioamplify.c \
|
|
audiodynamic.c \
|
|
audiochebyshevfreqlimit.c \
|
|
audiochebyshevfreqband.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) \
|
|
$(LIBM)
|
|
libgstaudiofx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = audiopanorama.h \
|
|
audioinvert.h \
|
|
audioamplify.h \
|
|
audiodynamic.h \
|
|
audiochebyshevfreqlimit.h \
|
|
audiochebyshevfreqband.h
|
|
|