summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/base_mp/node2
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-22 19:21:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-22 19:21:38 +0000
commite31c63e5a8bae5fbda548f4b65c423b0fc2ce58c (patch)
treedb00eb2694d7dfd151e4c5f21b47a32e91e075ab /testsuites/samples/base_mp/node2
parentConverted to automake. (diff)
downloadrtems-e31c63e5a8bae5fbda548f4b65c423b0fc2ce58c.tar.bz2
Patch rtems-rc-19991117-7.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>
to convert the sample tests to automake.
Diffstat (limited to 'testsuites/samples/base_mp/node2')
-rw-r--r--testsuites/samples/base_mp/node2/Makefile.am59
1 files changed, 59 insertions, 0 deletions
diff --git a/testsuites/samples/base_mp/node2/Makefile.am b/testsuites/samples/base_mp/node2/Makefile.am
new file mode 100644
index 0000000000..8c9ca81f62
--- /dev/null
+++ b/testsuites/samples/base_mp/node2/Makefile.am
@@ -0,0 +1,59 @@
+##
+## $Id$
+##
+
+AUTOMAKE_OPTIONS = foreign 1.4
+ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
+
+VPATH = @srcdir@:@srcdir@/..
+
+NODE = 2
+SAMPLE = base_mp-node$(NODE)
+PGM = ${ARCH}/$(SAMPLE).exe
+
+MANAGERS = io mp
+
+# C source names, if any, go here -- minus the .c
+C_FILES = init.c apptask.c
+C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
+
+H_FILES = system.h
+
+DOCTYPES = doc scn
+DOCS = $(DOCTYPES:%=base_mp.%)
+
+SRCS = $(DOCS) $(C_FILES) $(H_FILES)
+OBJS = $(C_O_FILES)
+
+PRINT_SRCS = $(DOCS)
+
+include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
+include $(RTEMS_ROOT)/make/leaf.cfg
+include $(top_srcdir)/sample.am
+
+if HAS_MP
+
+#
+# (OPTIONAL) Add local stuff here using +=
+#
+
+AM_CPPFLAGS += -DNODE_NUMBER=$(NODE) -I.
+
+#
+# Add your list of files to delete here. The config files
+# already know how to delete some stuff, so you may want
+# to just run 'make clean' first to see what gets missed.
+# 'make clobber' already includes 'make clean'
+#
+
+${PGM}: $(OBJS) $(LINK_FILES)
+ $(make-exe)
+
+all-local: $(ARCH) $(TMPINSTALL_FILES)
+else
+all-local:
+endif
+
+EXTRA_DIST = $(DOCS)
+
+include $(top_srcdir)/../../../../automake/local.am