summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2019-06-09 01:34:04 +0100
committerTim-Philipp Müller <tim@centricular.com>2019-10-13 16:10:42 +0100
commit10d9e18f022fe797715c5e473768fa09cd5b91b1 (patch)
tree74aa5ecbf2ee9e8b76684f9737d38175729023f1 /tools
parent6babf1f086cce9cc392e2dc8a6cdf252d9b4cc48 (diff)
downloadgstreamer-10d9e18f022fe797715c5e473768fa09cd5b91b1.tar.gz
Remove autotools build system
Diffstat (limited to 'tools')
-rw-r--r--tools/.gitignore17
-rw-r--r--tools/Makefile.am48
2 files changed, 0 insertions, 65 deletions
diff --git a/tools/.gitignore b/tools/.gitignore
deleted file mode 100644
index e4ea6b8eb3..0000000000
--- a/tools/.gitignore
+++ /dev/null
@@ -1,17 +0,0 @@
-Makefile
-Makefile.in
-.dirstamp
-*.o
-*.lo
-*.la
-.deps
-.libs
-*.bb
-*.bbg
-*.da
-*.gcno
-
-gst-inspect-?.0
-gst-launch-?.0
-gst-typefind-?.0
-gst-stats-?.0
diff --git a/tools/Makefile.am b/tools/Makefile.am
deleted file mode 100644
index caa5ab6031..0000000000
--- a/tools/Makefile.am
+++ /dev/null
@@ -1,48 +0,0 @@
-
-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_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)
-
-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)
-
-if !GST_DISABLE_PARSE
-bin_PROGRAMS += gst-launch-@GST_API_VERSION@
-
-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
-
-manpages = \
- gst-inspect-@GST_API_VERSION@.1 \
- gst-stats-@GST_API_VERSION@.1 \
- gst-typefind-@GST_API_VERSION@.1
-
-if !GST_DISABLE_PARSE
-manpages += gst-launch-@GST_API_VERSION@.1
-endif
-
-man_MANS = $(manpages)
-
-# developer helper tools, not meant for installation
-noinst_SCRIPTS = gst-indent
-
-noinst_HEADERS = tools.h
-
-EXTRA_DIST = \
- 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)