Eliminate NODE.

This commit is contained in:
Ralf Corsepius
2005-11-20 08:33:03 +00:00
parent da90bab4f4
commit 6f9d34c497
2 changed files with 4 additions and 8 deletions

View File

@@ -1,7 +1,5 @@
## $Id$
NODE=1
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../testsuites/automake/compile.am
@@ -13,12 +11,12 @@ node1$(EXEEXT): ../mptest.adb init.o
$(GNATCOMPILE) -margs -a $< -o $@
init.o: ../../../support/init.c
$(COMPILE.c) -DNODE_NUMBER=$(NODE) -I$(srcdir)/.. -c $<
$(COMPILE.c) -DNODE_NUMBER=1 -I$(srcdir)/.. -c $<
if EXPADA
noinst_PROGRAMS = node1
endif
EXTRA_DIST = base_mp.scn
EXTRA_DIST = base_mp-node1.scn
include $(top_srcdir)/../../../testsuites/automake/local.am

View File

@@ -1,7 +1,5 @@
## $Id$
NODE=2
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../testsuites/automake/compile.am
@@ -13,7 +11,7 @@ node2$(EXEEXT): ../mptest.adb init.o
$(GNATCOMPILE) -margs -a $< -o $@
init.o: ../../../support/init.c
$(COMPILE.c) -DNODE_NUMBER=$(NODE) -I$(srcdir)/.. -c $<
$(COMPILE.c) -DNODE_NUMBER=2 -I$(srcdir)/.. -c $<
if EXPADA
noinst_PROGRAMS = node2
@@ -21,6 +19,6 @@ endif
node2_SOURCES = mptest-per_node_configuration.adb
EXTRA_DIST = base_mp.scn
EXTRA_DIST = base_mp-node2.scn
include $(top_srcdir)/../../../testsuites/automake/local.am