mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-05 23:18:47 +00:00
803ce6bf48
Original commit message from CVS: GST_DEBUG reorganization This is a big diff (ca 450k), containing loads of stuff: - gstinfo.[ch] complete rewrite - changing of all GST_DEBUG messages to reflect that change - reorganization of subsystem disabling - addition of gstconfig.h.in so we can track the disablings - <gst/gst.h> does not include <unistd.h> and <config.h> anymore - documentation updated for gstinfo stuff (build the docs yourself to know what changed) - bugfixes for making of the docs (files from CVS are not deleted anymore - testsuite for debugging changes in testsuite/debug expect breakage
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
if GST_DISABLE_PARSE
|
|
GST_PARSE_DIRS =
|
|
else
|
|
GST_PARSE_DIRS = parse
|
|
endif
|
|
|
|
if GST_DISABLE_GST_DEBUG
|
|
GST_DEBUG_DIRS =
|
|
else
|
|
GST_DEBUG_DIRS = debug
|
|
endif
|
|
|
|
# FIXME : threads bytestream
|
|
SUBDIRS = caps plugin elements clock refcounting threads indexers $(GST_PARSE_DIRS) $(GST_DEBUG_DIRS) ## cleanup dynparams
|
|
|
|
TOP_BUILDDIR=$(shell cd $(top_builddir) && pwd)
|
|
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(TOP_BUILDDIR) GST_REGISTRY=$(TOP_BUILDDIR)/testsuite/test-registry.xml
|
|
|
|
if BUILD_FAILING_TESTS
|
|
testprogs = test_gst_init
|
|
inspectcheck = gst-inspect-check
|
|
else
|
|
testprogs =
|
|
inspectcheck =
|
|
endif
|
|
|
|
# since these TESTS are only run after recursing into subdirs,
|
|
# gst-register should be run before that, in the first subdir that uses it
|
|
# TESTS = $(top_builddir)/tools/gst-register $(testprogs) $(inspectcheck)
|
|
TESTS = $(testprogs) $(inspectcheck)
|
|
|
|
check_PROGRAMS = $(testprogs)
|
|
|
|
# we have nothing but apps here, we can do this safely
|
|
LIBS = $(GST_LIBS)
|
|
AM_CFLAGS = $(GST_CFLAGS)
|
|
|
|
# we makes them, we gots to clean them
|
|
CLEANFILES = test-registry.xml
|
|
|
|
DIST_SUBDIRS = bytestream caps cleanup clock dynparams elements indexers \
|
|
plugin refcounting threads parse
|
|
|
|
EXTRA_DIST = gst-inspect-check
|