2001-08-21 20:16:48 +00:00
|
|
|
|
2011-06-05 13:10:50 +00:00
|
|
|
bin_PROGRAMS = \
|
2012-04-04 11:13:52 +00:00
|
|
|
gst-inspect-@GST_API_VERSION@ \
|
2013-11-04 19:11:09 +00:00
|
|
|
gst-stats-@GST_API_VERSION@ \
|
2012-04-04 11:13:52 +00:00
|
|
|
gst-typefind-@GST_API_VERSION@
|
2004-02-04 18:02:55 +00:00
|
|
|
|
2012-04-04 11:13:52 +00:00
|
|
|
gst_inspect_@GST_API_VERSION@_SOURCES = gst-inspect.c tools.h
|
|
|
|
gst_inspect_@GST_API_VERSION@_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
|
|
gst_inspect_@GST_API_VERSION@_LDADD = $(GST_OBJ_LIBS)
|
2011-06-05 13:10:50 +00:00
|
|
|
|
2013-11-04 19:11:09 +00:00
|
|
|
gst_stats_@GST_API_VERSION@_SOURCES = gst-stats.c tools.h
|
|
|
|
gst_stats_@GST_API_VERSION@_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
|
|
gst_stats_@GST_API_VERSION@_LDADD = $(GST_OBJ_LIBS)
|
|
|
|
|
2012-04-04 11:13:52 +00:00
|
|
|
gst_typefind_@GST_API_VERSION@_SOURCES = gst-typefind.c tools.h
|
|
|
|
gst_typefind_@GST_API_VERSION@_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
|
|
gst_typefind_@GST_API_VERSION@_LDADD = $(GST_OBJ_LIBS)
|
2004-02-04 18:02:55 +00:00
|
|
|
|
2005-11-30 19:01:53 +00:00
|
|
|
if !GST_DISABLE_PARSE
|
2012-04-04 11:13:52 +00:00
|
|
|
bin_PROGRAMS += gst-launch-@GST_API_VERSION@
|
2004-02-04 18:02:55 +00:00
|
|
|
|
2012-04-04 11:13:52 +00:00
|
|
|
gst_launch_@GST_API_VERSION@_SOURCES = gst-launch.c tools.h
|
|
|
|
gst_launch_@GST_API_VERSION@_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
|
|
gst_launch_@GST_API_VERSION@_LDADD = $(GST_OBJ_LIBS)
|
2011-06-05 13:10:50 +00:00
|
|
|
endif
|
2004-03-02 10:38:40 +00:00
|
|
|
|
2011-06-05 13:10:50 +00:00
|
|
|
manpages = \
|
2012-04-04 11:13:52 +00:00
|
|
|
gst-inspect-@GST_API_VERSION@.1 \
|
|
|
|
gst-typefind-@GST_API_VERSION@.1
|
2004-02-04 18:27:39 +00:00
|
|
|
|
2011-06-05 13:10:50 +00:00
|
|
|
if !GST_DISABLE_PARSE
|
2012-04-04 11:13:52 +00:00
|
|
|
manpages += gst-launch-@GST_API_VERSION@.1
|
2011-06-05 13:10:50 +00:00
|
|
|
endif
|
2004-02-04 18:27:39 +00:00
|
|
|
|
2011-06-04 13:22:05 +00:00
|
|
|
CLEANFILES = $(manpages) *.gcno *.gcda
|
2004-02-04 18:27:39 +00:00
|
|
|
man_MANS = $(manpages)
|
|
|
|
|
2004-03-15 18:20:03 +00:00
|
|
|
# developer helper tools, not meant for installation
|
|
|
|
noinst_SCRIPTS = gst-indent
|
|
|
|
|
2006-05-05 17:07:42 +00:00
|
|
|
noinst_HEADERS = tools.h
|
|
|
|
|
2004-02-04 18:27:39 +00:00
|
|
|
EXTRA_DIST = \
|
2004-03-15 18:20:03 +00:00
|
|
|
$(noinst_SCRIPTS) \
|
2004-02-04 18:27:39 +00:00
|
|
|
gst-inspect.1.in \
|
|
|
|
gst-launch.1.in \
|
2013-09-04 08:18:55 +00:00
|
|
|
gst-typefind.1.in
|
2000-08-28 20:20:55 +00:00
|
|
|
|
2012-04-04 11:13:52 +00:00
|
|
|
%-@GST_API_VERSION@.1: %.1.in
|
2010-02-26 15:03:47 +00:00
|
|
|
$(AM_V_GEN)sed \
|
2012-04-04 11:13:52 +00:00
|
|
|
-e s,gst-inspect,gst-inspect-@GST_API_VERSION@,g \
|
|
|
|
-e s,gst-launch,gst-launch-@GST_API_VERSION@,g \
|
|
|
|
-e s,gst-typefind,gst-typefind-@GST_API_VERSION@,g \
|
|
|
|
-e s,GST_API_VERSION,@GST_API_VERSION@,g \
|
2003-08-15 20:25:40 +00:00
|
|
|
$< >$@
|
2004-03-13 15:17:30 +00:00
|
|
|
|