2003-12-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* base_mp/node1/Makefile.am, base_mp/node2/Makefile.am:
	Eliminate VPATH.
This commit is contained in:
Ralf Corsepius
2003-12-17 06:20:25 +00:00
parent 013b750f88
commit f8a3260576
3 changed files with 15 additions and 8 deletions
+5
View File
@@ -1,3 +1,8 @@
2003-12-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* base_mp/node1/Makefile.am, base_mp/node2/Makefile.am:
Eliminate VPATH.
2003-12-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* sample.am: Use $(mkdir_p) instead of $(mkinstalldirs).
+5 -4
View File
@@ -2,16 +2,17 @@
## $Id$
##
VPATH = @srcdir@:@srcdir@/..
NODE = 1
SAMPLE = base_mp-node$(NODE)
PGM = ${ARCH}/$(SAMPLE).exe
MANAGERS = io mp
C_FILES = init.c apptask.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
C_FILES = ../init.c ../apptask.c
C_O_FILES = $(C_FILES:../%.c=${ARCH}/%.$(OBJEXT))
$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): ../%.c $(ARCH)/$(dirstamp)
${COMPILE} -o $@ -c $<
H_FILES = system.h
+5 -4
View File
@@ -2,16 +2,17 @@
## $Id$
##
VPATH = @srcdir@:@srcdir@/..
NODE = 2
SAMPLE = base_mp-node$(NODE)
PGM = ${ARCH}/$(SAMPLE).exe
MANAGERS = io mp
C_FILES = init.c apptask.c
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.$(OBJEXT))
C_FILES = ../init.c ../apptask.c
C_O_FILES = $(C_FILES:../%.c=${ARCH}/%.$(OBJEXT))
$(ARCH)/%$(LIB_VARIANT).$(OBJEXT): ../%.c $(ARCH)/$(dirstamp)
${COMPILE} -o $@ -c $<
H_FILES = system.h