mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-01 06:01:04 +00:00
5014a9eee6
Original commit message from CVS: fold all interfaces in one interfaces dir, preserving CVS history
18 lines
527 B
Makefile
18 lines
527 B
Makefile
|
|
plugin_LTLIBRARIES = libgstvolume.la
|
|
|
|
libgstvolume_la_SOURCES = gstvolume.c
|
|
libgstvolume_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstvolume_la_LIBADD = $(GST_LIBS) $(GST_CONTROL_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
|
$(GST_BASE_LIBS)
|
|
libgstvolume_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstvolume.h filter.func
|
|
|
|
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
|