*** empty log message ***

This commit is contained in:
ceriel 1987-01-30 19:58:55 +00:00
parent 9dd16696ef
commit 471884cdf4
4 changed files with 12 additions and 6 deletions

View file

@ -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:

View file

@ -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

View file

@ -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:

View file

@ -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