summaryrefslogtreecommitdiffstats
path: root/c/src/ada-tests
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-11-20 17:08:04 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-11-20 17:08:04 +0000
commit603b359810d4d47dfba6e64c600d8c26ef751abe (patch)
treee1a5c4f7a82cb5f703d023fcc0962e43c45e51d2 /c/src/ada-tests
parent2005-11-20 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-603b359810d4d47dfba6e64c600d8c26ef751abe.tar.bz2
New.
Diffstat (limited to 'c/src/ada-tests')
-rw-r--r--c/src/ada-tests/mptests/mp02/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp02/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp02/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp03/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp03/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp03/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp04/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp04/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp04/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp05/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp05/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp05/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp06/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp06/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp06/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp07/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp07/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp07/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp08/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp08/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp08/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp09/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp09/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp09/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp10/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp10/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp10/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp11/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp11/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp11/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp12/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp12/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp12/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp13/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp13/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp13/node2/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp14/Makefile.am6
-rw-r--r--c/src/ada-tests/mptests/mp14/node1/Makefile.am19
-rw-r--r--c/src/ada-tests/mptests/mp14/node2/Makefile.am19
39 files changed, 572 insertions, 0 deletions
diff --git a/c/src/ada-tests/mptests/mp02/Makefile.am b/c/src/ada-tests/mptests/mp02/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp02/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp02/node1/Makefile.am b/c/src/ada-tests/mptests/mp02/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp02/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp02/node2/Makefile.am b/c/src/ada-tests/mptests/mp02/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp02/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp03/Makefile.am b/c/src/ada-tests/mptests/mp03/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp03/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp03/node1/Makefile.am b/c/src/ada-tests/mptests/mp03/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp03/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp03/node2/Makefile.am b/c/src/ada-tests/mptests/mp03/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp03/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp04/Makefile.am b/c/src/ada-tests/mptests/mp04/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp04/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp04/node1/Makefile.am b/c/src/ada-tests/mptests/mp04/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp04/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp04/node2/Makefile.am b/c/src/ada-tests/mptests/mp04/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp04/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp05/Makefile.am b/c/src/ada-tests/mptests/mp05/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp05/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp05/node1/Makefile.am b/c/src/ada-tests/mptests/mp05/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp05/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp05/node2/Makefile.am b/c/src/ada-tests/mptests/mp05/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp05/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp06/Makefile.am b/c/src/ada-tests/mptests/mp06/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp06/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp06/node1/Makefile.am b/c/src/ada-tests/mptests/mp06/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp06/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp06/node2/Makefile.am b/c/src/ada-tests/mptests/mp06/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp06/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp07/Makefile.am b/c/src/ada-tests/mptests/mp07/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp07/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp07/node1/Makefile.am b/c/src/ada-tests/mptests/mp07/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp07/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp07/node2/Makefile.am b/c/src/ada-tests/mptests/mp07/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp07/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp08/Makefile.am b/c/src/ada-tests/mptests/mp08/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp08/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp08/node1/Makefile.am b/c/src/ada-tests/mptests/mp08/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp08/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp08/node2/Makefile.am b/c/src/ada-tests/mptests/mp08/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp08/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp09/Makefile.am b/c/src/ada-tests/mptests/mp09/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp09/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp09/node1/Makefile.am b/c/src/ada-tests/mptests/mp09/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp09/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp09/node2/Makefile.am b/c/src/ada-tests/mptests/mp09/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp09/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp10/Makefile.am b/c/src/ada-tests/mptests/mp10/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp10/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp10/node1/Makefile.am b/c/src/ada-tests/mptests/mp10/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp10/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp10/node2/Makefile.am b/c/src/ada-tests/mptests/mp10/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp10/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp11/Makefile.am b/c/src/ada-tests/mptests/mp11/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp11/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp11/node1/Makefile.am b/c/src/ada-tests/mptests/mp11/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp11/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp11/node2/Makefile.am b/c/src/ada-tests/mptests/mp11/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp11/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp12/Makefile.am b/c/src/ada-tests/mptests/mp12/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp12/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp12/node1/Makefile.am b/c/src/ada-tests/mptests/mp12/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp12/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp12/node2/Makefile.am b/c/src/ada-tests/mptests/mp12/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp12/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp13/Makefile.am b/c/src/ada-tests/mptests/mp13/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp13/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp13/node1/Makefile.am b/c/src/ada-tests/mptests/mp13/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp13/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp13/node2/Makefile.am b/c/src/ada-tests/mptests/mp13/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp13/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp14/Makefile.am b/c/src/ada-tests/mptests/mp14/Makefile.am
new file mode 100644
index 0000000000..037d3ad7cb
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp14/Makefile.am
@@ -0,0 +1,6 @@
+## $Id$
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../testsuites/automake/subdirs.am
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp14/node1/Makefile.am b/c/src/ada-tests/mptests/mp14/node1/Makefile.am
new file mode 100644
index 0000000000..24d26fb096
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp14/node1/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am
diff --git a/c/src/ada-tests/mptests/mp14/node2/Makefile.am b/c/src/ada-tests/mptests/mp14/node2/Makefile.am
new file mode 100644
index 0000000000..76394d06a0
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp14/node2/Makefile.am
@@ -0,0 +1,19 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../testsuites/automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): ../mptest.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+include $(top_srcdir)/../../../testsuites/automake/local.am