mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
016d036137
Conflicts: configure.ac gst-libs/gst/audio/gstbaseaudiosink.c gst/audioconvert/channelmixtest.c gst/playback/gstplaybasebin.c gst/playback/gstsubtitleoverlay.c tests/examples/Makefile.am tests/examples/audio/Makefile.am
21 lines
632 B
Makefile
21 lines
632 B
Makefile
if HAVE_GTK
|
|
GTK_EXAMPLES = audiomix volume
|
|
else
|
|
GTK_EXAMPLES =
|
|
endif
|
|
|
|
noinst_PROGRAMS = testchannels $(GTK_EXAMPLES)
|
|
|
|
testchannels_SOURCES = testchannels.c
|
|
testchannels_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
testchannels_LDADD = $(top_builddir)/gst-libs/gst/audio/libgstaudio-$(GST_MAJORMINOR).la \
|
|
$(GST_LIBS)
|
|
if HAVE_GTK
|
|
audiomix_SOURCES = audiomix.c
|
|
audiomix_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -D_GNU_SOURCE
|
|
audiomix_LDADD = $(GST_LIBS) $(GTK_LIBS) $(LIBM)
|
|
|
|
volume_SOURCES = volume.c
|
|
volume_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS) -D_GNU_SOURCE
|
|
volume_LDADD = $(GST_LIBS) $(GTK_LIBS) $(LIBM)
|
|
endif
|