From 471884cdf4413f248c1a7d7b7feacbed9b3f5b2b Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 30 Jan 1987 19:58:55 +0000 Subject: [PATCH] *** empty log message *** --- mach/em22/libbc/Makefile | 3 ++- mach/em22/libbc/compmodule | 6 ++++-- mach/em22/libpc/Makefile | 3 ++- mach/em22/libpc/compmodule | 6 ++++-- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/mach/em22/libbc/Makefile b/mach/em22/libbc/Makefile index 2a4694600..3b9dc3aa8 100644 --- a/mach/em22/libbc/Makefile +++ b/mach/em22/libbc/Makefile @@ -1,5 +1,6 @@ +SUF=m MAKEFILE=../../proto/libg/Makefile -MACHDEF="MACH=int22" "SUF=m" +MACHDEF="MACH=int22" "SUF=$(SUF)" BCDEF="PREF=bc" "SUB=" "SRC=lang/basic/lib" install: diff --git a/mach/em22/libbc/compmodule b/mach/em22/libbc/compmodule index 330b4aef5..1c3c2ecfb 100755 --- a/mach/em22/libbc/compmodule +++ b/mach/em22/libbc/compmodule @@ -1,2 +1,4 @@ -${MACH?} -I../../../h ${MACHFL?} -LIB $1 1>&2 -echo `basename $1 $2`.m +if ${MACH?} -I../../../h ${MACHFL?} -LIB $1 1>&2 +then echo `basename $1 $2`.m +else exit 1 +fi diff --git a/mach/em22/libpc/Makefile b/mach/em22/libpc/Makefile index e96da058a..9258cacd7 100644 --- a/mach/em22/libpc/Makefile +++ b/mach/em22/libpc/Makefile @@ -1,5 +1,6 @@ +SUF=m MAKEFILE=../../proto/libg/Makefile -MACHDEF="MACH=int" "SUF=m" +MACHDEF="MACH=int" "SUF=$(SUF)" PCDEF="PREF=pc" "SUB=" "SRC=lang/pc/libpc" install: diff --git a/mach/em22/libpc/compmodule b/mach/em22/libpc/compmodule index 330b4aef5..1c3c2ecfb 100755 --- a/mach/em22/libpc/compmodule +++ b/mach/em22/libpc/compmodule @@ -1,2 +1,4 @@ -${MACH?} -I../../../h ${MACHFL?} -LIB $1 1>&2 -echo `basename $1 $2`.m +if ${MACH?} -I../../../h ${MACHFL?} -LIB $1 1>&2 +then echo `basename $1 $2`.m +else exit 1 +fi -- 2.34.1