summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2018-04-09 13:45:48 +1000
committerChris Johns <chrisj@rtems.org>2018-04-10 08:24:54 +1000
commitcc14545ed97d7fc03d2a6066f1700cb23fb02877 (patch)
tree9dda5f99a23733bf81459a26f7244792d676fdad /testsuites/tmtests
parenttestsuite/sptests: Merged nested Makefile.am files into one Makefile.am (diff)
downloadrtems-cc14545ed97d7fc03d2a6066f1700cb23fb02877.tar.bz2
testsuite/tmtests: Merged nested Makefile.am files into one Makefile.am
This change is part of the testsuite Makefile.am reorganization. Update #3382
Diffstat (limited to 'testsuites/tmtests')
-rw-r--r--testsuites/tmtests/Makefile.am400
-rw-r--r--testsuites/tmtests/configure.ac88
-rw-r--r--testsuites/tmtests/tm01/Makefile.am24
-rw-r--r--testsuites/tmtests/tm02/Makefile.am25
-rw-r--r--testsuites/tmtests/tm03/Makefile.am25
-rw-r--r--testsuites/tmtests/tm04/Makefile.am24
-rw-r--r--testsuites/tmtests/tm05/Makefile.am24
-rw-r--r--testsuites/tmtests/tm06/Makefile.am24
-rw-r--r--testsuites/tmtests/tm07/Makefile.am24
-rw-r--r--testsuites/tmtests/tm08/Makefile.am24
-rw-r--r--testsuites/tmtests/tm09/Makefile.am24
-rw-r--r--testsuites/tmtests/tm10/Makefile.am24
-rw-r--r--testsuites/tmtests/tm11/Makefile.am24
-rw-r--r--testsuites/tmtests/tm12/Makefile.am24
-rw-r--r--testsuites/tmtests/tm13/Makefile.am24
-rw-r--r--testsuites/tmtests/tm14/Makefile.am24
-rw-r--r--testsuites/tmtests/tm15/Makefile.am24
-rw-r--r--testsuites/tmtests/tm16/Makefile.am24
-rw-r--r--testsuites/tmtests/tm17/Makefile.am24
-rw-r--r--testsuites/tmtests/tm18/Makefile.am24
-rw-r--r--testsuites/tmtests/tm19/Makefile.am24
-rw-r--r--testsuites/tmtests/tm20/Makefile.am24
-rw-r--r--testsuites/tmtests/tm21/Makefile.am24
-rw-r--r--testsuites/tmtests/tm22/Makefile.am24
-rw-r--r--testsuites/tmtests/tm23/Makefile.am24
-rw-r--r--testsuites/tmtests/tm24/Makefile.am24
-rw-r--r--testsuites/tmtests/tm25/Makefile.am24
-rw-r--r--testsuites/tmtests/tm26/Makefile.am24
-rw-r--r--testsuites/tmtests/tm27/Makefile.am24
-rw-r--r--testsuites/tmtests/tm28/Makefile.am24
-rw-r--r--testsuites/tmtests/tm29/Makefile.am24
-rw-r--r--testsuites/tmtests/tm30/Makefile.am24
-rw-r--r--testsuites/tmtests/tm31/Makefile.am28
-rw-r--r--testsuites/tmtests/tm32/Makefile.am27
-rw-r--r--testsuites/tmtests/tm33/Makefile.am28
-rw-r--r--testsuites/tmtests/tm34/Makefile.am27
-rw-r--r--testsuites/tmtests/tm35/Makefile.am28
-rw-r--r--testsuites/tmtests/tm36/Makefile.am27
-rw-r--r--testsuites/tmtests/tmck/Makefile.am24
-rw-r--r--testsuites/tmtests/tmcontext01/Makefile.am19
-rw-r--r--testsuites/tmtests/tmfine01/Makefile.am19
-rw-r--r--testsuites/tmtests/tmoverhd/Makefile.am24
-rw-r--r--testsuites/tmtests/tmtimer01/Makefile.am19
43 files changed, 437 insertions, 1043 deletions
diff --git a/testsuites/tmtests/Makefile.am b/testsuites/tmtests/Makefile.am
index 8326abe329..b7fd67bdb9 100644
--- a/testsuites/tmtests/Makefile.am
+++ b/testsuites/tmtests/Makefile.am
@@ -1,11 +1,397 @@
+#
+# Timing Testuite
+#
+
ACLOCAL_AMFLAGS = -I ../aclocal
-_SUBDIRS = tmck tmoverhd tm01 tm02 tm03 tm04 tm05 tm06 tm07 tm08 tm09 tm10 \
- tm11 tm12 tm13 tm14 tm15 tm16 tm17 tm18 tm19 tm20 tm21 tm22 tm23 tm24 \
- tm25 tm26 tm27 tm28 tm29 tm30 tm31 tm32 tm33 tm34 tm35 tm36
-_SUBDIRS += tmtimer01
-_SUBDIRS += tmcontext01
-_SUBDIRS += tmfine01
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../automake/compile.am
+
+tm_tests =
+tm_screens =
+tm_docs =
+
+support_includes = -I$(top_srcdir)/../support/include
+
+if TEST_tm01
+tm_tests += tm01
+tm_docs += tm01/tm01.doc
+tm01_SOURCES = tm01/task1.c tm01/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm01) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm02
+tm_tests += tm02
+tm_docs += tm02/tm02.doc
+tm02_SOURCES = tm02/task1.c tm02/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm02_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm02) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT) -DTM02
+endif
+
+if TEST_tm03
+tm_tests += tm03
+tm_docs += tm03/tm03.doc
+tm03_SOURCES = tm03/task1.c tm03/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm03_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm03) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT) -DTM03
+endif
+
+if TEST_tm04
+tm_tests += tm04
+tm_docs += tm04/tm04.doc
+tm04_SOURCES = tm04/task1.c tm04/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm04_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm04) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm05
+tm_tests += tm05
+tm_docs += tm05/tm05.doc
+tm05_SOURCES = tm05/task1.c tm05/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm05_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm05) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm06
+tm_tests += tm06
+tm_docs += tm06/tm06.doc
+tm06_SOURCES = tm06/task1.c tm06/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm06_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm06) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm07
+tm_tests += tm07
+tm_docs += tm07/tm07.doc
+tm07_SOURCES = tm07/task1.c tm07/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm07_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm07) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm08
+tm_tests += tm08
+tm_docs += tm08/tm08.doc
+tm08_SOURCES = tm08/task1.c tm08/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm08_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm08) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm09
+tm_tests += tm09
+tm_docs += tm09/tm09.doc
+tm09_SOURCES = tm09/task1.c tm09/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm09_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm09) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm10
+tm_tests += tm10
+tm_docs += tm10/tm10.doc
+tm10_SOURCES = tm10/task1.c tm10/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm10_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm10) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm11
+tm_tests += tm11
+tm_docs += tm11/tm11.doc
+tm11_SOURCES = tm11/task1.c tm11/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm11_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm11) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm12
+tm_tests += tm12
+tm_docs += tm12/tm12.doc
+tm12_SOURCES = tm12/task1.c tm12/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm12_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm12) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm13
+tm_tests += tm13
+tm_docs += tm13/tm13.doc
+tm13_SOURCES = tm13/task1.c tm13/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm13_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm13) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm14
+tm_tests += tm14
+tm_docs += tm14/tm14.doc
+tm14_SOURCES = tm14/task1.c tm14/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm14_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm14) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm15
+tm_tests += tm15
+tm_docs += tm15/tm15.doc
+tm15_SOURCES = tm15/task1.c tm15/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm15_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm15) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm16
+tm_tests += tm16
+tm_docs += tm16/tm16.doc
+tm16_SOURCES = tm16/task1.c tm16/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm16_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm16) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm17
+tm_tests += tm17
+tm_docs += tm17/tm17.doc
+tm17_SOURCES = tm17/task1.c tm17/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm17_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm17) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm18
+tm_tests += tm18
+tm_docs += tm18/tm18.doc
+tm18_SOURCES = tm18/task1.c tm18/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm18_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm18) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm19
+tm_tests += tm19
+tm_docs += tm19/tm19.doc
+tm19_SOURCES = tm19/task1.c tm19/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm19_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm19) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm20
+tm_tests += tm20
+tm_docs += tm20/tm20.doc
+tm20_SOURCES = tm20/task1.c tm20/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm20_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm20) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm21
+tm_tests += tm21
+tm_docs += tm21/tm21.doc
+tm21_SOURCES = tm21/task1.c tm21/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm21_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm21) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm22
+tm_tests += tm22
+tm_docs += tm22/tm22.doc
+tm22_SOURCES = tm22/task1.c tm22/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm22_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm22) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm23
+tm_tests += tm23
+tm_docs += tm23/tm23.doc
+tm23_SOURCES = tm23/task1.c tm23/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm23_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm23) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm24
+tm_tests += tm24
+tm_docs += tm24/tm24.doc
+tm24_SOURCES = tm24/task1.c tm24/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm24_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm24) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm25
+tm_tests += tm25
+tm_docs += tm25/tm25.doc
+tm25_SOURCES = tm25/task1.c tm25/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm25_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm25) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm26
+tm_tests += tm26
+tm_docs += tm26/tm26.doc
+tm26_SOURCES = tm26/task1.c tm26/system.h tm26/fptest.h \
+ include/timesys.h ../support/src/tmtests_empty_function.c
+tm26_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm26) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm27
+tm_tests += tm27
+tm_docs += tm27/tm27.doc
+tm27_SOURCES = tm27/task1.c tm27/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm27_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm27) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm28
+tm_tests += tm28
+tm_docs += tm28/tm28.doc
+tm28_SOURCES = tm28/task1.c tm28/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm28_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm28) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm29
+tm_tests += tm29
+tm_docs += tm29/tm29.doc
+tm29_SOURCES = tm29/task1.c tm29/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm29_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm29) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm30
+tm_tests += tm30
+tm_docs += tm30/tm30.doc
+tm30_SOURCES = tm30/init.c include/timesys.h \
+ ../support/src/tmtests_empty_function.c \
+ ../support/src/tmtests_support.c
+tm30_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm30) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tm31
+tm_tests += tm31
+tm_docs += tm31/tm31.doc
+tm31_SOURCES = tm02/task1.c tm02/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm31_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm31) $(support_includes) \
+ -I$(top_srcdir)/../tm02 -I$(top_srcdir)/include \
+ -DOPERATION_COUNT=$(OPERATION_COUNT) -DTM31
+endif
+
+if TEST_tm32
+tm_tests += tm32
+tm_docs += tm32/tm32.doc
+tm32_SOURCES = tm03/task1.c tm03/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm32_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm32) $(support_includes) \
+ -I$(top_srcdir)/../tm03 -I$(top_srcdir)/include \
+ -DOPERATION_COUNT=$(OPERATION_COUNT) -DTM32
+endif
+
+if TEST_tm33
+tm_tests += tm33
+tm_docs += tm33/tm33.doc
+tm33_SOURCES = tm02/task1.c tm02/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm33_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm33) $(support_includes) \
+ -I$(top_srcdir)/../tm02 -I$(top_srcdir)/include \
+ -DOPERATION_COUNT=$(OPERATION_COUNT) -DTM33
+endif
+
+if TEST_tm34
+tm_tests += tm34
+tm_docs += tm34/tm34.doc
+tm34_SOURCES = tm03/task1.c tm03/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm34_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm34) $(support_includes) \
+ -I$(top_srcdir)/../tm03 -I$(top_srcdir)/include \
+ -DOPERATION_COUNT=$(OPERATION_COUNT) -DTM34
+endif
+
+if TEST_tm35
+tm_tests += tm35
+tm_docs += tm35/tm35.doc
+tm35_SOURCES = tm02/task1.c tm02/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm35_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm35) $(support_includes) \
+ -I$(top_srcdir)/../tm02 -I$(top_srcdir)/include \
+ -DOPERATION_COUNT=$(OPERATION_COUNT) -DTM35
+endif
+
+if TEST_tm36
+tm_tests += tm36
+tm_docs += tm36/tm36.doc
+tm36_SOURCES = tm03/task1.c tm03/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tm36_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tm36) $(support_includes) \
+ -I$(top_srcdir)/../tm03 -I$(top_srcdir)/include \
+ -DOPERATION_COUNT=$(OPERATION_COUNT) -DTM36
+endif
+
+if TEST_tmck
+tm_tests += tmck
+tm_docs += tmck/tmck.doc
+tmck_SOURCES = tmck/task1.c tmck/system.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tmck_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tmck) $(support_includes) \
+ -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tmcontext01
+tm_tests += tmcontext01
+tm_screens += tmcontext01/tmcontext01.scn
+tm_docs += tmcontext01/tmcontext01.doc
+tmcontext01_SOURCES = tmcontext01/init.c
+tmcontext01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tmcontext01) \
+ $(support_includes)
+endif
+
+if TEST_tmfine01
+tm_tests += tmfine01
+tm_screens += tmfine01/tmfine01.scn
+tm_docs += tmfine01/tmfine01.doc
+tmfine01_SOURCES = tmfine01/init.c
+tmfine01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tmfine01) \
+ $(support_includes)
+endif
+
+if TEST_tmoverhd
+tm_tests += tmoverhd
+tm_docs += tmoverhd/tmoverhd.doc
+tmoverhd_SOURCES = tmoverhd/testtask.c tmoverhd/empty.c \
+ tmoverhd/system.h tmoverhd/dumrtems.h include/timesys.h \
+ ../support/src/tmtests_empty_function.c
+tmoverhd_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tmoverhd) \
+ $(support_includes) -I$(top_srcdir)/include \
+ -DOPERATION_COUNT=$(OPERATION_COUNT)
+endif
+
+if TEST_tmtimer01
+tm_tests += tmtimer01
+tm_screens += tmtimer01/tmtimer01.scn
+tm_docs += tmtimer01/tmtimer01.doc
+tmtimer01_SOURCES = tmtimer01/init.c
+tmtimer01_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_FLAGS_tmtimer01) \
+ $(support_includes)
+endif
+
+rtems_tests_PROGRAMS = $(tm_tests)
+dist_rtems_tests_DATA = $(tm_screens) $(tm_docs)
-include $(top_srcdir)/../automake/subdirs.am
include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/configure.ac b/testsuites/tmtests/configure.ac
index a5d8c3e182..a4a5564c0e 100644
--- a/testsuites/tmtests/configure.ac
+++ b/testsuites/tmtests/configure.ac
@@ -27,48 +27,48 @@ RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
OPERATION_COUNT=${OPERATION_COUNT-100}
AC_SUBST(OPERATION_COUNT)
-# Explicitly list all Makefiles here
-AC_CONFIG_FILES([Makefile
-tmtimer01/Makefile
-tmfine01/Makefile
-tmcontext01/Makefile
-tmck/Makefile
-tmoverhd/Makefile
-tm01/Makefile
-tm02/Makefile
-tm03/Makefile
-tm04/Makefile
-tm05/Makefile
-tm06/Makefile
-tm07/Makefile
-tm08/Makefile
-tm09/Makefile
-tm10/Makefile
-tm11/Makefile
-tm12/Makefile
-tm13/Makefile
-tm14/Makefile
-tm15/Makefile
-tm16/Makefile
-tm17/Makefile
-tm18/Makefile
-tm19/Makefile
-tm20/Makefile
-tm21/Makefile
-tm22/Makefile
-tm23/Makefile
-tm24/Makefile
-tm25/Makefile
-tm26/Makefile
-tm27/Makefile
-tm28/Makefile
-tm29/Makefile
-tm30/Makefile
-tm31/Makefile
-tm32/Makefile
-tm33/Makefile
-tm34/Makefile
-tm35/Makefile
-tm36/Makefile
-])
+# BSP Test configuration
+RTEMS_TEST_CHECK([tm01])
+RTEMS_TEST_CHECK([tm02])
+RTEMS_TEST_CHECK([tm03])
+RTEMS_TEST_CHECK([tm04])
+RTEMS_TEST_CHECK([tm05])
+RTEMS_TEST_CHECK([tm06])
+RTEMS_TEST_CHECK([tm07])
+RTEMS_TEST_CHECK([tm08])
+RTEMS_TEST_CHECK([tm09])
+RTEMS_TEST_CHECK([tm10])
+RTEMS_TEST_CHECK([tm11])
+RTEMS_TEST_CHECK([tm12])
+RTEMS_TEST_CHECK([tm13])
+RTEMS_TEST_CHECK([tm14])
+RTEMS_TEST_CHECK([tm15])
+RTEMS_TEST_CHECK([tm16])
+RTEMS_TEST_CHECK([tm17])
+RTEMS_TEST_CHECK([tm18])
+RTEMS_TEST_CHECK([tm19])
+RTEMS_TEST_CHECK([tm20])
+RTEMS_TEST_CHECK([tm21])
+RTEMS_TEST_CHECK([tm22])
+RTEMS_TEST_CHECK([tm23])
+RTEMS_TEST_CHECK([tm24])
+RTEMS_TEST_CHECK([tm25])
+RTEMS_TEST_CHECK([tm26])
+RTEMS_TEST_CHECK([tm27])
+RTEMS_TEST_CHECK([tm28])
+RTEMS_TEST_CHECK([tm29])
+RTEMS_TEST_CHECK([tm30])
+RTEMS_TEST_CHECK([tm31])
+RTEMS_TEST_CHECK([tm32])
+RTEMS_TEST_CHECK([tm33])
+RTEMS_TEST_CHECK([tm34])
+RTEMS_TEST_CHECK([tm35])
+RTEMS_TEST_CHECK([tm36])
+RTEMS_TEST_CHECK([tmck])
+RTEMS_TEST_CHECK([tmcontext01])
+RTEMS_TEST_CHECK([tmfine01])
+RTEMS_TEST_CHECK([tmoverhd])
+RTEMS_TEST_CHECK([tmtimer01])
+
+AC_CONFIG_FILES([Makefile])
AC_OUTPUT
diff --git a/testsuites/tmtests/tm01/Makefile.am b/testsuites/tmtests/tm01/Makefile.am
deleted file mode 100644
index b9aea4cf4e..0000000000
--- a/testsuites/tmtests/tm01/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm01
-tm01_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm01.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm01_OBJECTS)
-LINK_LIBS = $(tm01_LDLIBS)
-
-tm01$(EXEEXT): $(tm01_OBJECTS) $(tm01_DEPENDENCIES)
- @rm -f tm01$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm02/Makefile.am b/testsuites/tmtests/tm02/Makefile.am
deleted file mode 100644
index ba6ad0fc74..0000000000
--- a/testsuites/tmtests/tm02/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-
-rtems_tests_PROGRAMS = tm02
-tm02_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm02.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-AM_CPPFLAGS += -DTM02
-
-LINK_OBJS = $(tm02_OBJECTS)
-LINK_LIBS = $(tm02_LDLIBS)
-
-tm02$(EXEEXT): $(tm02_OBJECTS) $(tm02_DEPENDENCIES)
- @rm -f tm02$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm03/Makefile.am b/testsuites/tmtests/tm03/Makefile.am
deleted file mode 100644
index 1f6d6fe689..0000000000
--- a/testsuites/tmtests/tm03/Makefile.am
+++ /dev/null
@@ -1,25 +0,0 @@
-
-rtems_tests_PROGRAMS = tm03
-tm03_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm03.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-AM_CPPFLAGS += -DTM03
-
-LINK_OBJS = $(tm03_OBJECTS)
-LINK_LIBS = $(tm03_LDLIBS)
-
-tm03$(EXEEXT): $(tm03_OBJECTS) $(tm03_DEPENDENCIES)
- @rm -f tm03$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm04/Makefile.am b/testsuites/tmtests/tm04/Makefile.am
deleted file mode 100644
index f6ccdb2f2a..0000000000
--- a/testsuites/tmtests/tm04/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm04
-tm04_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm04.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm04_OBJECTS)
-LINK_LIBS = $(tm04_LDLIBS)
-
-tm04$(EXEEXT): $(tm04_OBJECTS) $(tm04_DEPENDENCIES)
- @rm -f tm04$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm05/Makefile.am b/testsuites/tmtests/tm05/Makefile.am
deleted file mode 100644
index b6bac50b41..0000000000
--- a/testsuites/tmtests/tm05/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm05
-tm05_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm05.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm05_OBJECTS)
-LINK_LIBS = $(tm05_LDLIBS)
-
-tm05$(EXEEXT): $(tm05_OBJECTS) $(tm05_DEPENDENCIES)
- @rm -f tm05$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm06/Makefile.am b/testsuites/tmtests/tm06/Makefile.am
deleted file mode 100644
index ba98d5fa4f..0000000000
--- a/testsuites/tmtests/tm06/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm06
-tm06_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm06.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm06_OBJECTS)
-LINK_LIBS = $(tm06_LDLIBS)
-
-tm06$(EXEEXT): $(tm06_OBJECTS) $(tm06_DEPENDENCIES)
- @rm -f tm06$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm07/Makefile.am b/testsuites/tmtests/tm07/Makefile.am
deleted file mode 100644
index 37e7f7c4f0..0000000000
--- a/testsuites/tmtests/tm07/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm07
-tm07_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm07.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm07_OBJECTS)
-LINK_LIBS = $(tm07_LDLIBS)
-
-tm07$(EXEEXT): $(tm07_OBJECTS) $(tm07_DEPENDENCIES)
- @rm -f tm07$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm08/Makefile.am b/testsuites/tmtests/tm08/Makefile.am
deleted file mode 100644
index ea7fee2a5a..0000000000
--- a/testsuites/tmtests/tm08/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm08
-tm08_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm08.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm08_OBJECTS)
-LINK_LIBS = $(tm08_LDLIBS)
-
-tm08$(EXEEXT): $(tm08_OBJECTS) $(tm08_DEPENDENCIES)
- @rm -f tm08$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm09/Makefile.am b/testsuites/tmtests/tm09/Makefile.am
deleted file mode 100644
index 260019006f..0000000000
--- a/testsuites/tmtests/tm09/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm09
-tm09_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm09.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm09_OBJECTS)
-LINK_LIBS = $(tm09_LDLIBS)
-
-tm09$(EXEEXT): $(tm09_OBJECTS) $(tm09_DEPENDENCIES)
- @rm -f tm09$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm10/Makefile.am b/testsuites/tmtests/tm10/Makefile.am
deleted file mode 100644
index 4454acb91a..0000000000
--- a/testsuites/tmtests/tm10/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm10
-tm10_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm10.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm10_OBJECTS)
-LINK_LIBS = $(tm10_LDLIBS)
-
-tm10$(EXEEXT): $(tm10_OBJECTS) $(tm10_DEPENDENCIES)
- @rm -f tm10$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm11/Makefile.am b/testsuites/tmtests/tm11/Makefile.am
deleted file mode 100644
index ba31e929b8..0000000000
--- a/testsuites/tmtests/tm11/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm11
-tm11_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm11.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm11_OBJECTS)
-LINK_LIBS = $(tm11_LDLIBS)
-
-tm11$(EXEEXT): $(tm11_OBJECTS) $(tm11_DEPENDENCIES)
- @rm -f tm11$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm12/Makefile.am b/testsuites/tmtests/tm12/Makefile.am
deleted file mode 100644
index 0c609f2c61..0000000000
--- a/testsuites/tmtests/tm12/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm12
-tm12_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm12.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm12_OBJECTS)
-LINK_LIBS = $(tm12_LDLIBS)
-
-tm12$(EXEEXT): $(tm12_OBJECTS) $(tm12_DEPENDENCIES)
- @rm -f tm12$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm13/Makefile.am b/testsuites/tmtests/tm13/Makefile.am
deleted file mode 100644
index e071a1417b..0000000000
--- a/testsuites/tmtests/tm13/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm13
-tm13_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm13.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm13_OBJECTS)
-LINK_LIBS = $(tm13_LDLIBS)
-
-tm13$(EXEEXT): $(tm13_OBJECTS) $(tm13_DEPENDENCIES)
- @rm -f tm13$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm14/Makefile.am b/testsuites/tmtests/tm14/Makefile.am
deleted file mode 100644
index 2cf6e14d36..0000000000
--- a/testsuites/tmtests/tm14/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm14
-tm14_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm14.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm14_OBJECTS)
-LINK_LIBS = $(tm14_LDLIBS)
-
-tm14$(EXEEXT): $(tm14_OBJECTS) $(tm14_DEPENDENCIES)
- @rm -f tm14$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm15/Makefile.am b/testsuites/tmtests/tm15/Makefile.am
deleted file mode 100644
index 3196e49ebc..0000000000
--- a/testsuites/tmtests/tm15/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm15
-tm15_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm15.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm15_OBJECTS)
-LINK_LIBS = $(tm15_LDLIBS)
-
-tm15$(EXEEXT): $(tm15_OBJECTS) $(tm15_DEPENDENCIES)
- @rm -f tm15$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm16/Makefile.am b/testsuites/tmtests/tm16/Makefile.am
deleted file mode 100644
index 29cb74e0c8..0000000000
--- a/testsuites/tmtests/tm16/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm16
-tm16_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm16.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm16_OBJECTS)
-LINK_LIBS = $(tm16_LDLIBS)
-
-tm16$(EXEEXT): $(tm16_OBJECTS) $(tm16_DEPENDENCIES)
- @rm -f tm16$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm17/Makefile.am b/testsuites/tmtests/tm17/Makefile.am
deleted file mode 100644
index ee20e7fa4e..0000000000
--- a/testsuites/tmtests/tm17/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm17
-tm17_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm17.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm17_OBJECTS)
-LINK_LIBS = $(tm17_LDLIBS)
-
-tm17$(EXEEXT): $(tm17_OBJECTS) $(tm17_DEPENDENCIES)
- @rm -f tm17$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm18/Makefile.am b/testsuites/tmtests/tm18/Makefile.am
deleted file mode 100644
index 282323912e..0000000000
--- a/testsuites/tmtests/tm18/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm18
-tm18_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm18.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm18_OBJECTS)
-LINK_LIBS = $(tm18_LDLIBS)
-
-tm18$(EXEEXT): $(tm18_OBJECTS) $(tm18_DEPENDENCIES)
- @rm -f tm18$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm19/Makefile.am b/testsuites/tmtests/tm19/Makefile.am
deleted file mode 100644
index 1382c05563..0000000000
--- a/testsuites/tmtests/tm19/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm19
-tm19_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm19.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm19_OBJECTS)
-LINK_LIBS = $(tm19_LDLIBS)
-
-tm19$(EXEEXT): $(tm19_OBJECTS) $(tm19_DEPENDENCIES)
- @rm -f tm19$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm20/Makefile.am b/testsuites/tmtests/tm20/Makefile.am
deleted file mode 100644
index 79505ced20..0000000000
--- a/testsuites/tmtests/tm20/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm20
-tm20_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm20.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm20_OBJECTS)
-LINK_LIBS = $(tm20_LDLIBS)
-
-tm20$(EXEEXT): $(tm20_OBJECTS) $(tm20_DEPENDENCIES)
- @rm -f tm20$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm21/Makefile.am b/testsuites/tmtests/tm21/Makefile.am
deleted file mode 100644
index 720cbda007..0000000000
--- a/testsuites/tmtests/tm21/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm21
-tm21_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm21.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm21_OBJECTS)
-LINK_LIBS = $(tm21_LDLIBS)
-
-tm21$(EXEEXT): $(tm21_OBJECTS) $(tm21_DEPENDENCIES)
- @rm -f tm21$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm22/Makefile.am b/testsuites/tmtests/tm22/Makefile.am
deleted file mode 100644
index 32e44cb8e3..0000000000
--- a/testsuites/tmtests/tm22/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm22
-tm22_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm22.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm22_OBJECTS)
-LINK_LIBS = $(tm22_LDLIBS)
-
-tm22$(EXEEXT): $(tm22_OBJECTS) $(tm22_DEPENDENCIES)
- @rm -f tm22$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm23/Makefile.am b/testsuites/tmtests/tm23/Makefile.am
deleted file mode 100644
index 0634bad9ad..0000000000
--- a/testsuites/tmtests/tm23/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm23
-tm23_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm23.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm23_OBJECTS)
-LINK_LIBS = $(tm23_LDLIBS)
-
-tm23$(EXEEXT): $(tm23_OBJECTS) $(tm23_DEPENDENCIES)
- @rm -f tm23$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm24/Makefile.am b/testsuites/tmtests/tm24/Makefile.am
deleted file mode 100644
index 08cbdd9c7e..0000000000
--- a/testsuites/tmtests/tm24/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm24
-tm24_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm24.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm24_OBJECTS)
-LINK_LIBS = $(tm24_LDLIBS)
-
-tm24$(EXEEXT): $(tm24_OBJECTS) $(tm24_DEPENDENCIES)
- @rm -f tm24$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm25/Makefile.am b/testsuites/tmtests/tm25/Makefile.am
deleted file mode 100644
index 37a4959644..0000000000
--- a/testsuites/tmtests/tm25/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm25
-tm25_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm25.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm25_OBJECTS)
-LINK_LIBS = $(tm25_LDLIBS)
-
-tm25$(EXEEXT): $(tm25_OBJECTS) $(tm25_DEPENDENCIES)
- @rm -f tm25$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm26/Makefile.am b/testsuites/tmtests/tm26/Makefile.am
deleted file mode 100644
index 1cdb5be1ca..0000000000
--- a/testsuites/tmtests/tm26/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm26
-tm26_SOURCES = task1.c system.h fptest.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm26.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm26_OBJECTS)
-LINK_LIBS = $(tm26_LDLIBS)
-
-tm26$(EXEEXT): $(tm26_OBJECTS) $(tm26_DEPENDENCIES)
- @rm -f tm26$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm27/Makefile.am b/testsuites/tmtests/tm27/Makefile.am
deleted file mode 100644
index 6df7ad380f..0000000000
--- a/testsuites/tmtests/tm27/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm27
-tm27_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm27.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm27_OBJECTS)
-LINK_LIBS = $(tm27_LDLIBS)
-
-tm27$(EXEEXT): $(tm27_OBJECTS) $(tm27_DEPENDENCIES)
- @rm -f tm27$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm28/Makefile.am b/testsuites/tmtests/tm28/Makefile.am
deleted file mode 100644
index 01c31c4912..0000000000
--- a/testsuites/tmtests/tm28/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm28
-tm28_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm28.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm28_OBJECTS)
-LINK_LIBS = $(tm28_LDLIBS)
-
-tm28$(EXEEXT): $(tm28_OBJECTS) $(tm28_DEPENDENCIES)
- @rm -f tm28$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm29/Makefile.am b/testsuites/tmtests/tm29/Makefile.am
deleted file mode 100644
index cd59ff64cb..0000000000
--- a/testsuites/tmtests/tm29/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm29
-tm29_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm29.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm29_OBJECTS)
-LINK_LIBS = $(tm29_LDLIBS)
-
-tm29$(EXEEXT): $(tm29_OBJECTS) $(tm29_DEPENDENCIES)
- @rm -f tm29$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm30/Makefile.am b/testsuites/tmtests/tm30/Makefile.am
deleted file mode 100644
index 46159e5218..0000000000
--- a/testsuites/tmtests/tm30/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tm30
-tm30_SOURCES = init.c ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c \
- ../../support/src/tmtests_support.c
-
-dist_rtems_tests_DATA = tm30.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tm30_OBJECTS)
-LINK_LIBS = $(tm30_LDLIBS)
-
-tm30$(EXEEXT): $(tm30_OBJECTS) $(tm30_DEPENDENCIES)
- @rm -f tm30$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm31/Makefile.am b/testsuites/tmtests/tm31/Makefile.am
deleted file mode 100644
index a6c8839428..0000000000
--- a/testsuites/tmtests/tm31/Makefile.am
+++ /dev/null
@@ -1,28 +0,0 @@
-
-rtems_tests_PROGRAMS = tm31
-tm31_SOURCES = ../tm02/task1.c
-tm31_SOURCES += ../tm02/system.h
-tm31_SOURCES += ../include/timesys.h
-tm31_SOURCES += ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm31.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-AM_CPPFLAGS += -I$(top_srcdir)/../tm02
-AM_CPPFLAGS += -DTM31
-
-LINK_OBJS = $(tm31_OBJECTS)
-LINK_LIBS = $(tm31_LDLIBS)
-
-tm31$(EXEEXT): $(tm31_OBJECTS) $(tm31_DEPENDENCIES)
- @rm -f tm31$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm32/Makefile.am b/testsuites/tmtests/tm32/Makefile.am
deleted file mode 100644
index 7fe71fd60d..0000000000
--- a/testsuites/tmtests/tm32/Makefile.am
+++ /dev/null
@@ -1,27 +0,0 @@
-
-rtems_tests_PROGRAMS = tm32
-tm32_SOURCES = ../tm03/task1.c
-tm32_SOURCES += ../tm03/system.h
-tm32_SOURCES += ../include/timesys.h
-tm32_SOURCES += ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm32.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-AM_CPPFLAGS += -I$(top_srcdir)/../tm03
-AM_CPPFLAGS += -DTM32
-
-LINK_OBJS = $(tm32_OBJECTS)
-LINK_LIBS = $(tm32_LDLIBS)
-
-tm32$(EXEEXT): $(tm32_OBJECTS) $(tm32_DEPENDENCIES)
- @rm -f tm32$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm33/Makefile.am b/testsuites/tmtests/tm33/Makefile.am
deleted file mode 100644
index c0ef67010f..0000000000
--- a/testsuites/tmtests/tm33/Makefile.am
+++ /dev/null
@@ -1,28 +0,0 @@
-
-rtems_tests_PROGRAMS = tm33
-tm33_SOURCES = ../tm02/task1.c
-tm33_SOURCES += ../tm02/system.h
-tm33_SOURCES += ../include/timesys.h
-tm33_SOURCES += ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm33.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-AM_CPPFLAGS += -I$(top_srcdir)/../tm02
-AM_CPPFLAGS += -DTM33
-
-LINK_OBJS = $(tm33_OBJECTS)
-LINK_LIBS = $(tm33_LDLIBS)
-
-tm33$(EXEEXT): $(tm33_OBJECTS) $(tm33_DEPENDENCIES)
- @rm -f tm33$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm34/Makefile.am b/testsuites/tmtests/tm34/Makefile.am
deleted file mode 100644
index 7c9f1ad333..0000000000
--- a/testsuites/tmtests/tm34/Makefile.am
+++ /dev/null
@@ -1,27 +0,0 @@
-
-rtems_tests_PROGRAMS = tm34
-tm34_SOURCES = ../tm03/task1.c
-tm34_SOURCES += ../tm03/system.h
-tm34_SOURCES += ../include/timesys.h
-tm34_SOURCES += ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm34.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-AM_CPPFLAGS += -I$(top_srcdir)/../tm03
-AM_CPPFLAGS += -DTM34
-
-LINK_OBJS = $(tm34_OBJECTS)
-LINK_LIBS = $(tm34_LDLIBS)
-
-tm34$(EXEEXT): $(tm34_OBJECTS) $(tm34_DEPENDENCIES)
- @rm -f tm34$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm35/Makefile.am b/testsuites/tmtests/tm35/Makefile.am
deleted file mode 100644
index b6c8c91991..0000000000
--- a/testsuites/tmtests/tm35/Makefile.am
+++ /dev/null
@@ -1,28 +0,0 @@
-
-rtems_tests_PROGRAMS = tm35
-tm35_SOURCES = ../tm02/task1.c
-tm35_SOURCES += ../tm02/system.h
-tm35_SOURCES += ../include/timesys.h
-tm35_SOURCES += ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm35.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-AM_CPPFLAGS += -I$(top_srcdir)/../tm02
-AM_CPPFLAGS += -DTM35
-
-LINK_OBJS = $(tm35_OBJECTS)
-LINK_LIBS = $(tm35_LDLIBS)
-
-tm35$(EXEEXT): $(tm35_OBJECTS) $(tm35_DEPENDENCIES)
- @rm -f tm35$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tm36/Makefile.am b/testsuites/tmtests/tm36/Makefile.am
deleted file mode 100644
index 4abab965c2..0000000000
--- a/testsuites/tmtests/tm36/Makefile.am
+++ /dev/null
@@ -1,27 +0,0 @@
-
-rtems_tests_PROGRAMS = tm36
-tm36_SOURCES = ../tm03/task1.c
-tm36_SOURCES += ../tm03/system.h
-tm36_SOURCES += ../include/timesys.h
-tm36_SOURCES += ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tm36.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-AM_CPPFLAGS += -I$(top_srcdir)/../tm03
-AM_CPPFLAGS += -DTM36
-
-LINK_OBJS = $(tm36_OBJECTS)
-LINK_LIBS = $(tm36_LDLIBS)
-
-tm36$(EXEEXT): $(tm36_OBJECTS) $(tm36_DEPENDENCIES)
- @rm -f tm36$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tmck/Makefile.am b/testsuites/tmtests/tmck/Makefile.am
deleted file mode 100644
index a76ce4863b..0000000000
--- a/testsuites/tmtests/tmck/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tmck
-tmck_SOURCES = task1.c system.h ../include/timesys.h \
- ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tmck.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tmck_OBJECTS)
-LINK_LIBS = $(tmck_LDLIBS)
-
-tmck$(EXEEXT): $(tmck_OBJECTS) $(tmck_DEPENDENCIES)
- @rm -f tmck$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tmcontext01/Makefile.am b/testsuites/tmtests/tmcontext01/Makefile.am
deleted file mode 100644
index 6612272dc9..0000000000
--- a/testsuites/tmtests/tmcontext01/Makefile.am
+++ /dev/null
@@ -1,19 +0,0 @@
-rtems_tests_PROGRAMS = tmcontext01
-tmcontext01_SOURCES = init.c
-
-dist_rtems_tests_DATA = tmcontext01.scn tmcontext01.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tmcontext01_OBJECTS)
-LINK_LIBS = $(tmcontext01_LDLIBS)
-
-tmcontext01$(EXEEXT): $(tmcontext01_OBJECTS) $(tmcontext01_DEPENDENCIES)
- @rm -f tmcontext01$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tmfine01/Makefile.am b/testsuites/tmtests/tmfine01/Makefile.am
deleted file mode 100644
index d6db7c8e20..0000000000
--- a/testsuites/tmtests/tmfine01/Makefile.am
+++ /dev/null
@@ -1,19 +0,0 @@
-rtems_tests_PROGRAMS = tmfine01
-tmfine01_SOURCES = init.c
-
-dist_rtems_tests_DATA = tmfine01.scn tmfine01.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tmfine01_OBJECTS)
-LINK_LIBS = $(tmfine01_LDLIBS)
-
-tmfine01$(EXEEXT): $(tmfine01_OBJECTS) $(tmfine01_DEPENDENCIES)
- @rm -f tmfine01$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tmoverhd/Makefile.am b/testsuites/tmtests/tmoverhd/Makefile.am
deleted file mode 100644
index 3a350d0243..0000000000
--- a/testsuites/tmtests/tmoverhd/Makefile.am
+++ /dev/null
@@ -1,24 +0,0 @@
-
-rtems_tests_PROGRAMS = tmoverhd
-tmoverhd_SOURCES = testtask.c empty.c system.h dumrtems.h \
- ../include/timesys.h ../../support/src/tmtests_empty_function.c
-
-dist_rtems_tests_DATA = tmoverhd.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-
-OPERATION_COUNT = @OPERATION_COUNT@
-AM_CPPFLAGS += -I$(top_srcdir)/include -DOPERATION_COUNT=$(OPERATION_COUNT)
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tmoverhd_OBJECTS)
-LINK_LIBS = $(tmoverhd_LDLIBS)
-
-tmoverhd$(EXEEXT): $(tmoverhd_OBJECTS) $(tmoverhd_DEPENDENCIES)
- @rm -f tmoverhd$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am
diff --git a/testsuites/tmtests/tmtimer01/Makefile.am b/testsuites/tmtests/tmtimer01/Makefile.am
deleted file mode 100644
index 15a68282f3..0000000000
--- a/testsuites/tmtests/tmtimer01/Makefile.am
+++ /dev/null
@@ -1,19 +0,0 @@
-rtems_tests_PROGRAMS = tmtimer01
-tmtimer01_SOURCES = init.c
-
-dist_rtems_tests_DATA = tmtimer01.scn tmtimer01.doc
-
-include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
-include $(top_srcdir)/../automake/compile.am
-include $(top_srcdir)/../automake/leaf.am
-
-AM_CPPFLAGS += -I$(top_srcdir)/../support/include
-
-LINK_OBJS = $(tmtimer01_OBJECTS)
-LINK_LIBS = $(tmtimer01_LDLIBS)
-
-tmtimer01$(EXEEXT): $(tmtimer01_OBJECTS) $(tmtimer01_DEPENDENCIES)
- @rm -f tmtimer01$(EXEEXT)
- $(make-exe)
-
-include $(top_srcdir)/../automake/local.am