1plugin_LTLIBRARIES = libgstaudiovisualizers.la 2 3libgstaudiovisualizers_la_SOURCES = plugin.c \ 4 gstspacescope.c gstspacescope.h \ 5 gstspectrascope.c gstspectrascope.h \ 6 gstsynaescope.c gstsynaescope.h \ 7 gstwavescope.c gstwavescope.h 8 9libgstaudiovisualizers_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \ 10 $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \ 11 $(GST_CFLAGS) 12libgstaudiovisualizers_la_LIBADD = \ 13 $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \ 14 -lgstvideo-$(GST_API_VERSION) -lgstfft-$(GST_API_VERSION) \ 15 -lgstpbutils-$(GST_API_VERSION) $(GST_BASE_LIBS) $(GST_LIBS) $(LIBM) 16libgstaudiovisualizers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) 17 18noinst_HEADERS = gstdrawhelpers.h \ 19 gstspacescope.h \ 20 gstspectrascope.h \ 21 gstsynaescope.h \ 22 gstwavescope.h 23