gstreamer/tools/Makefile.am
Tim-Philipp Müller aa9fb3bc6f tools: add gst-device-monitor-1.0 utility
Just shows devices with basic info and exits. Or will
wait for more devices to show up or be removed with
the --follow option. It's also possible to pass filters
as command line arguments in the form DEVICE_CLASSES
or DEVICE_CLASSES:CAPS.
2014-06-27 11:07:21 +01:00

42 lines
1.4 KiB
Makefile

man_MANS = \
gst-device-monitor-@GST_API_VERSION@.1 \
gst-discoverer-@GST_API_VERSION@.1 \
gst-play-@GST_API_VERSION@.1
bin_PROGRAMS = \
gst-device-monitor-@GST_API_VERSION@ \
gst-discoverer-@GST_API_VERSION@ \
gst-play-@GST_API_VERSION@
gst_device_monitor_@GST_API_VERSION@_SOURCES = gst-device-monitor.c
gst_discoverer_@GST_API_VERSION@_SOURCES = gst-discoverer.c
gst_play_@GST_API_VERSION@_SOURCES = gst-play.c gst-play-kb.c gst-play-kb.h
noinst_HEADERS = gst-play-kb.h
CLEANFILES = $(bin_SCRIPTS) $(bin_PROGRAMS)
EXTRA_DIST = $(man_MANS)
LDADD = $(top_builddir)/gst-libs/gst/pbutils/libgstpbutils-@GST_API_VERSION@.la \
$(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_API_VERSION@.la \
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_API_VERSION@.la \
$(top_builddir)/gst-libs/gst/video/libgstvideo-@GST_API_VERSION@.la \
$(GST_BASE_LIBS) $(GST_LIBS) $(LIBM)
AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
Android.mk: Makefile.am
androgenizer -:PROJECT gst-discoverer-@GST_API_VERSION@ \
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
-:EXECUTABLE gst-discoverer-@GST_API_VERSION@ -:TAGS eng debug \
-:SOURCES $(gst_discoverer_@GST_API_VERSION@_SOURCES) \
-:CFLAGS $(DEFS) $(AM_CFLAGS) \
-:LDFLAGS -lgstpbutils-@GST_API_VERSION@ -lgstvideo-@GST_API_VERSION@ \
$(GST_BASE_LIBS) $(GST_LIBS) \
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
> $@