summaryrefslogtreecommitdiffstats
path: root/c/src/tests/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/tests/Makefile.in29
1 files changed, 29 insertions, 0 deletions
diff --git a/c/src/tests/Makefile.in b/c/src/tests/Makefile.in
new file mode 100644
index 0000000000..d3db5eb6a7
--- /dev/null
+++ b/c/src/tests/Makefile.in
@@ -0,0 +1,29 @@
+#
+# $Id$
+#
+
+@SET_MAKE@
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH=@srcdir@
+
+include $(RTEMS_CUSTOM)
+include $(PROJECT_ROOT)/make/directory.cfg
+
+all: README
+
+# mptests are the multiprocessing test suite
+# We only build them if HAS_MP was defined
+
+MP_TESTS_yes_V = mptests
+MP_TESTS = $(MP_TESTS_$(HAS_MP)_V)
+
+# psxtests are the POSIX API test suite
+# We only build them if HAS_POSIX_API was defined
+
+POSIX_TESTS_yes_V = psxtests
+POSIX_TESTS = $(POSIX_TESTS_$(HAS_POSIX_API)_V)
+
+SUB_DIRS=tools support samples libtests \
+ sptests $(MP_TESTS) $(POSIX_TESTS) tmtests
+