mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
6afa17d8f0
Original commit message from CVS: * gst/equalizer/Makefile.am: * gst/spectrum/Makefile.am: Fix includes order * tests/check/Makefile.am: Exclude v4l2src from the states test - it takes too long to start. * tests/check/elements/spectrum.c: Make the test run properly with CK_FORK=no
17 lines
645 B
Makefile
17 lines
645 B
Makefile
plugin_LTLIBRARIES = libgstequalizer.la
|
|
|
|
libgstequalizer_la_SOURCES = \
|
|
gstiirequalizer.c gstiirequalizer.h \
|
|
gstiirequalizernbands.c gstiirequalizernbands.h \
|
|
gstiirequalizer3bands.c gstiirequalizer3bands.h \
|
|
gstiirequalizer10bands.c gstiirequalizer10bands.h
|
|
|
|
libgstequalizer_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_CONTROLLER_CFLAGS) $(GST_CFLAGS)
|
|
libgstequalizer_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstaudio-$(GST_MAJORMINOR) $(GST_BASE_LIBS) $(GST_CONTROLLER_LIBS) \
|
|
$(GST_LIBS) $(LIBM)
|
|
libgstequalizer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstiirequalizer.h
|
|
|