summaryrefslogtreecommitdiffstats
path: root/c/src/tests/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-11-30 18:36:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-11-30 18:36:52 +0000
commitf4cec63dfa82bad859adc35799283f38dd2e654e (patch)
treea6598c1bb1b6399aa520b31777eff36f9c9bdd5d /c/src/tests/Makefile.in
parentCorrected call to rtems_termios_open. (diff)
downloadrtems-f4cec63dfa82bad859adc35799283f38dd2e654e.tar.bz2
Since test suite Makefiles are not always generated, use wildcard
to determine which directories to descend into.
Diffstat (limited to 'c/src/tests/Makefile.in')
-rw-r--r--c/src/tests/Makefile.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/c/src/tests/Makefile.in b/c/src/tests/Makefile.in
index d3db5eb6a7..40edd2a4f0 100644
--- a/c/src/tests/Makefile.in
+++ b/c/src/tests/Makefile.in
@@ -14,16 +14,15 @@ 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
+# wildcard on this lets ALL test suites be optional
+SUB_DIRS=$(wildcard tools support samples libtests \
+ sptests $(MP_TESTS) $(POSIX_TESTS) tmtests)