2002-09-13 Joel Sherrill <joel@OARcorp.com>

* samples/base_mp/node1/Makefile.am, samples/base_mp/node2/Makefile.am:
	Now appear to mostly compile.
This commit is contained in:
Joel Sherrill
2002-09-13 17:34:10 +00:00
parent d7ff09b719
commit d814e2c564
3 changed files with 17 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2002-09-13 Joel Sherrill <joel@OARcorp.com>
* samples/base_mp/node1/Makefile.am, samples/base_mp/node2/Makefile.am:
Now appear to mostly compile.
2002-09-13 Joel Sherrill <joel@OARcorp.com> 2002-09-13 Joel Sherrill <joel@OARcorp.com>
* samples/hello/Makefile.am: Make sure init.c is compiled and * samples/hello/Makefile.am: Make sure init.c is compiled and

View File

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

View File

@@ -1,5 +1,7 @@
## $Id$ ## $Id$
NODE=2
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../automake/compile.am include $(top_srcdir)/../../../automake/compile.am
@@ -7,9 +9,12 @@ include $(top_srcdir)/ada.am
AM_ADAFLAGS += -I$(srcdir)/.. AM_ADAFLAGS += -I$(srcdir)/..
node2$(EXEEXT): ../mptest.adb node2$(EXEEXT): ../mptest.adb init.o
$(GNATCOMPILE) -margs -a $< -o $@ $(GNATCOMPILE) -margs -a $< -o $@
init.o: ../../../support/init.c
$(COMPILE.c) -DNODE_NUMBER=$(NODE) -I$(srcdir)/.. -c $<
if EXPADA if EXPADA
noinst_PROGRAMS = node2 noinst_PROGRAMS = node2
endif endif