mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
9eb7c68f13
Original commit message from CVS: remove filter.func
18 lines
497 B
Makefile
18 lines
497 B
Makefile
plugin_LTLIBRARIES = libgstvolume.la
|
|
|
|
libgstvolume_la_SOURCES = gstvolume.c
|
|
libgstvolume_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstvolume_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvolume_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
|
|
noinst_HEADERS = gstvolume.h
|
|
|
|
if HAVE_GTK
|
|
noinst_PROGRAMS = demo
|
|
demo_SOURCES = demo.c
|
|
demo_CFLAGS = $(GTK_CFLAGS) $(GST_CFLAGS) -D_GNU_SOURCE
|
|
demo_LDFLAGS = $(GTK_LIBS) $(GST_LIBS) -lm
|
|
endif
|