mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
169bc79045
Original commit message from CVS: add missing header files for disting
38 lines
878 B
Makefile
38 lines
878 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 \
|
|
audiocheblimit.c \
|
|
audiochebband.c \
|
|
audiowsincband.c \
|
|
audiowsinclimit.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 \
|
|
audiocheblimit.h \
|
|
audiochebband.h \
|
|
audiowsincband.h \
|
|
audiowsinclimit.h
|
|
|