gst-inspect: fix unused-const-variable error in windows
[platform/upstream/gstreamer.git] / tests / Makefile.am
index 1f46b2b..9fe291c 100644 (file)
@@ -1,17 +1,45 @@
+EXTRA_DIST = README
 
-SUBDIRS = instantiate memchunk muxing sched threadstate seeking # bufspeed
+# Build misc unless both --disable-examples and --disable-benchmarks were passed
 
-if GST_DISABLE_TRACE
-noinst_PROGRAMS = 
+if BUILD_BENCHMARKS
+SUBDIRS_BENCHMARKS = benchmarks
+SUBDIRS_MISC = misc
 else
-noinst_PROGRAMS = lat
+SUBDIRS_BENCHMARKS =
+endif
 
+if BUILD_TESTS
+## SUBDIRS_TESTS = tests testsuite
+## FIXME: write tests from scratch
+SUBDIRS_TESTS =
+if HAVE_CHECK
+SUBDIRS_CHECK = check
+else
+SUBDIRS_CHECK =
+endif
+else
+SUBDIRS_TESTS =
+SUBDIRS_CHECK =
 endif
 
-noinst_PROGRAMS += spidey_bench
+if BUILD_EXAMPLES
+SUBDIRS_EXAMPLES = examples
+SUBDIRS_MISC = misc
+else
+SUBDIRS_EXAMPLES =
+endif
 
-AM_CFLAGS = $(GST_OBJ_CFLAGS)
-LIBS = $(GST_OBJ_LIBS)
+SUBDIRS = \
+       $(SUBDIRS_BENCHMARKS) \
+       $(SUBDIRS_CHECK) \
+       $(SUBDIRS_MISC) \
+       $(SUBDIRS_TESTS) \
+       $(SUBDIRS_EXAMPLES)
 
-EXTRA_DIST = README
-DIST_SUBDIRS= bufspeed instantiate memchunk muxing sched threadstate seeking
+# These are all the possible subdirs
+DIST_SUBDIRS = \
+       benchmarks \
+       check \
+       examples \
+       misc