summaryrefslogtreecommitdiffstats
path: root/c/src/ada-tests/mptests
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-09-02 05:08:57 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-09-02 05:08:57 +0000
commit0c7ef52b60e481ef9b55d42346dca94efdc867a9 (patch)
tree085d18087fd93ef78116adfd4f8894886e4f1de1 /c/src/ada-tests/mptests
parent2002-08-31 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-0c7ef52b60e481ef9b55d42346dca94efdc867a9.tar.bz2
2002-09-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* mptests/Makefile.am: New. * mptests/mp01/Makefile.am: New. * mptests/mp01/node1/Makefile.am: New. * mptests/mp01/node2/Makefile.am: New. * samples/base_mp/Makefile.am: Comment out building mptest$(EXEEXT). * samples/base_mp/node1/Makefile.am: New. * samples/base_mp/node2/Makefile.am: New. * configure.ac: Add mptests/mp01. Add samples/base_mp.
Diffstat (limited to 'c/src/ada-tests/mptests')
-rw-r--r--c/src/ada-tests/mptests/Makefile.am20
-rw-r--r--c/src/ada-tests/mptests/mp01/Makefile.am9
-rw-r--r--c/src/ada-tests/mptests/mp01/node1/Makefile.am21
-rw-r--r--c/src/ada-tests/mptests/mp01/node2/Makefile.am21
4 files changed, 71 insertions, 0 deletions
diff --git a/c/src/ada-tests/mptests/Makefile.am b/c/src/ada-tests/mptests/Makefile.am
new file mode 100644
index 0000000000..7d306a7acf
--- /dev/null
+++ b/c/src/ada-tests/mptests/Makefile.am
@@ -0,0 +1,20 @@
+## $Id$
+
+SUBDIRS =
+SUBDIRS += mp01
+#SUBDIRS += mp02
+#SUBDIRS += mp03
+#SUBDIRS += mp04
+#SUBDIRS += mp05
+#SUBDIRS += mp06
+#SUBDIRS += mp07
+#SUBDIRS += mp08
+#SUBDIRS += mp09
+#SUBDIRS += mp10
+#SUBDIRS += mp11
+#SUBDIRS += mp12
+#SUBDIRS += mp13
+#SUBDIRS += mp14
+
+include $(top_srcdir)/../../../automake/subdirs.am
+include $(top_srcdir)/../../../automake/local.am
diff --git a/c/src/ada-tests/mptests/mp01/Makefile.am b/c/src/ada-tests/mptests/mp01/Makefile.am
new file mode 100644
index 0000000000..b18e7c3e57
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp01/Makefile.am
@@ -0,0 +1,9 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../automake/compile.am
+include $(top_srcdir)/../../../automake/subdirs.am
+
+SUBDIRS = node1 node2
+
+include $(top_srcdir)/../../../automake/local.am
diff --git a/c/src/ada-tests/mptests/mp01/node1/Makefile.am b/c/src/ada-tests/mptests/mp01/node1/Makefile.am
new file mode 100644
index 0000000000..34d842b47b
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp01/node1/Makefile.am
@@ -0,0 +1,21 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node1$(EXEEXT): mptest-per_node_configuration.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node1
+endif
+
+node1_SOURCES = mptest-per_node_configuration.adb
+
+EXTRA_DIST = base_mp.scn
+
+include $(top_srcdir)/../../../automake/local.am
diff --git a/c/src/ada-tests/mptests/mp01/node2/Makefile.am b/c/src/ada-tests/mptests/mp01/node2/Makefile.am
new file mode 100644
index 0000000000..268f890831
--- /dev/null
+++ b/c/src/ada-tests/mptests/mp01/node2/Makefile.am
@@ -0,0 +1,21 @@
+## $Id$
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(top_srcdir)/../../../automake/compile.am
+
+include $(top_srcdir)/ada.am
+
+AM_ADAFLAGS += -I$(srcdir)/..
+
+node2$(EXEEXT): mptest-per_node_configuration.adb
+ $(GNATCOMPILE) -margs -a $< -o $@
+
+if EXPADA
+noinst_PROGRAMS = node2
+endif
+
+node2_SOURCES = mptest-per_node_configuration.adb
+
+EXTRA_DIST = base_mp.scn
+
+include $(top_srcdir)/../../../automake/local.am