1plugin_LTLIBRARIES = libgstequalizer.la 2 3libgstequalizer_la_SOURCES = \ 4 gstiirequalizer.c gstiirequalizer.h \ 5 gstiirequalizernbands.c gstiirequalizernbands.h \ 6 gstiirequalizer3bands.c gstiirequalizer3bands.h \ 7 gstiirequalizer10bands.c gstiirequalizer10bands.h 8 9libgstequalizer_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \ 10 $(GST_CFLAGS) 11libgstequalizer_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \ 12 -lgstaudio-$(GST_API_VERSION) $(GST_BASE_LIBS) \ 13 $(GST_LIBS) $(LIBM) 14libgstequalizer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) 15 16noinst_HEADERS = gstiirequalizer.h 17 18presetdir = $(datadir)/gstreamer-$(GST_API_VERSION)/presets 19preset_DATA = GstIirEqualizer3Bands.prs GstIirEqualizer10Bands.prs 20 21EXTRA_DIST = $(preset_DATA) 22