inspect: add comment for how to improve tracer support
[platform/upstream/gstreamer.git] / tools / Makefile.am
index 61e8fb5..caa5ab6 100644 (file)
@@ -1,85 +1,38 @@
-### assemble a list of programs we want to build and install
 
-if GST_DISABLE_PARSE
-GST_PARSE_SRC = 
-GST_PARSE_SRC_V = 
-else
-GST_PARSE_SRC = gst-launch
-GST_PARSE_SRC_V = gst-launch-@GST_MAJORMINOR@
-endif
+bin_PROGRAMS = \
+       gst-inspect-@GST_API_VERSION@ \
+       gst-stats-@GST_API_VERSION@ \
+       gst-typefind-@GST_API_VERSION@
 
+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)
 
-GST_OTHER_SRC = \
-       gst-inspect \
-       gst-typefind
-GST_OTHER_SRC_V = \
-       gst-inspect-@GST_MAJORMINOR@ \
-       gst-typefind-@GST_MAJORMINOR@
+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)
 
-### so all of the programs we want to build
-bin_PROGRAMS = \
-       $(GST_PARSE_SRC) $(GST_PARSE_SRC_V) \
-       $(GST_OTHER_SRC) $(GST_OTHER_SRC_V)
+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)
 
-# make sure each versioned tool has the right source file and flags
 if !GST_DISABLE_PARSE
-gst_launch_@GST_MAJORMINOR@_SOURCES = gst-launch.c tools.h
-gst_launch_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS) -UGST_DISABLE_DEPRECATED
-gst_launch_@GST_MAJORMINOR@_LDADD = $(GST_OBJ_LIBS)
-endif
+bin_PROGRAMS += gst-launch-@GST_API_VERSION@
 
-gst_inspect_@GST_MAJORMINOR@_SOURCES = gst-inspect.c tools.h
-gst_inspect_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
-gst_inspect_@GST_MAJORMINOR@_LDADD = $(GST_OBJ_LIBS)
-gst_typefind_@GST_MAJORMINOR@_SOURCES = gst-typefind.c tools.h
-gst_typefind_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
-gst_typefind_@GST_MAJORMINOR@_LDADD = $(GST_OBJ_LIBS)
-
-# make sure each unversioned tool comes from gst-run.c
-if !GST_DISABLE_PARSE
-gst_launch_SOURCES = gst-run.c
+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)
 endif
 
-gst_inspect_SOURCES = gst-run.c
-gst_typefind_SOURCES = gst-run.c
-
-# CFLAGS and libs for nonversioned frontend binaries
-AM_CFLAGS = $(GLIB_ONLY_CFLAGS)
-LDADD = $(GLIB_ONLY_LIBS)
-# due to depcomp not using AM_CFLAGS for rh9/yd3, we also set AM_CPPFLAGS
-AM_CPPFLAGS = $(GLIB_ONLY_CFLAGS)
+manpages = \
+       gst-inspect-@GST_API_VERSION@.1 \
+       gst-stats-@GST_API_VERSION@.1 \
+       gst-typefind-@GST_API_VERSION@.1
 
-Android.mk: Makefile.am
-       androgenizer -:PROJECT gstreamer \
-        -:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
-        -:EXECUTABLE gst-inspect -:TAGS eng debug \
-        -:SOURCES $(gst_inspect_@GST_MAJORMINOR@_SOURCES) \
-        -:CFLAGS $(DEFS) $(gst_inspect_@GST_MAJORMINOR@_CFLAGS) \
-        -:LDFLAGS $(gst_inspect_@GST_MAJORMINOR@_LDADD) \
-        -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
-        -:EXECUTABLE gst-launch -:TAGS eng debug \
-        -:SOURCES $(gst_launch_@GST_MAJORMINOR@_SOURCES) \
-        -:CFLAGS $(DEFS) $(gst_launch_@GST_MAJORMINOR@_CFLAGS) \
-        -:LDFLAGS $(gst_launch_@GST_MAJORMINOR@_LDADD) \
-        -:PASSTHROUGH LOCAL_ARM_MODE:=arm \
-       > $@
-
-### man pages we want to install
-if GST_DISABLE_PARSE
-GST_PARSE_MAN=
-else
-GST_PARSE_MAN = \
-       gst-launch-@GST_MAJORMINOR@.1
+if !GST_DISABLE_PARSE
+manpages += gst-launch-@GST_API_VERSION@.1
 endif
 
-
-GST_OTHER_MAN = \
-       gst-inspect-@GST_MAJORMINOR@.1 \
-       gst-typefind-@GST_MAJORMINOR@.1
-
-manpages = $(GST_PARSE_MAN) $(GST_OTHER_MAN)
-
-CLEANFILES = $(manpages) *.gcno *.gcda
 man_MANS = $(manpages)
 
 # developer helper tools, not meant for installation
@@ -88,17 +41,8 @@ noinst_SCRIPTS = gst-indent
 noinst_HEADERS = tools.h
 
 EXTRA_DIST = \
-       $(noinst_SCRIPTS) \
-       gst-inspect.1.in \
-       gst-launch.1.in \
-       gst-typefind.1.in \
-       gst-plot-timeline.py
-
-%-@GST_MAJORMINOR@.1: %.1.in
-       $(AM_V_GEN)sed \
-               -e s,gst-inspect,gst-inspect-@GST_MAJORMINOR@,g \
-               -e s,gst-launch,gst-launch-@GST_MAJORMINOR@,g \
-               -e s,gst-typefind,gst-typefind-@GST_MAJORMINOR@,g \
-               -e s,GST_MAJORMINOR,@GST_MAJORMINOR@,g \
-               $< >$@
-
+       gst-inspect-@GST_API_VERSION@.1 \
+       gst-typefind-@GST_API_VERSION@.1 \
+       gst-launch-@GST_API_VERSION@.1 \
+       gst-stats-@GST_API_VERSION@.1 \
+       $(noinst_SCRIPTS)