*** empty log message ***

This commit is contained in:
ceriel 1987-02-04 15:31:50 +00:00
parent fe3fe78538
commit 41cdf11b46
6 changed files with 20 additions and 11 deletions

View file

@ -1,5 +1,6 @@
SUF=o
MAKEFILE=../../proto/libg/Makefile
MACHDEF="MACH=pdp" "SUF=o" "ASAR=ar"
MACHDEF="MACH=pdp" "SUF=$(SUF)" "ASAR=ar"
BCDEF="PREF=bc" "SUB=" "SRC=lang/basic/lib"
install:

View file

@ -1,2 +1,4 @@
${MACH?} -I../../../h ${MACHFL?} $1 1>&2
echo `basename $1 $2`.o
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
then echo `basename $1 $2`.o
else exit 1
fi

View file

@ -1,12 +1,13 @@
SUF=o
MAKEFILE=../../proto/libg/Makefile
MACHDEF="MACH=pdp" "SUF=o" "ASAR=ar"
MACHDEF="MACH=pdp" "SUF=$(SUF)" "ASAR=ar"
STDIO="PREF=cc" "SUB=.1s" "SRC=lang/cem/libcc/stdio"
GEN="PREF=cc" "SUB=.2g" "SRC=lang/cem/libcc/gen"
MON="PREF=mon" "SRC=lang/cem/libcc/mon"
LIBM="PREF=m" "SRC=lang/cem/libcc/libm"
LIBLN="PREF=ln" "SRC=lang/cem/libcc/libln"
install: cpstdio cpgen cplibm cplibln
install: cpstdio cpgen
cpstdio:
make -f $(MAKEFILE) $(STDIO) $(MACHDEF) tailcp
@ -19,7 +20,7 @@ cplibm:
cplibln:
make -f $(MAKEFILE) $(LIBLN) $(MACHDEF) tailcp
cmp: cmpstdio cmpgen cmplibm cmplibln
cmp: cmpstdio cmpgen
cmpstdio:
make -f $(MAKEFILE) $(STDIO) $(MACHDEF) tail

View file

@ -1,2 +1,4 @@
${MACH?} -I../../../h ${MACHFL?} $1 1>&2
echo `basename $1 $2`.o
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
then echo `basename $1 $2`.o
else exit 1
fi

View file

@ -1,5 +1,6 @@
SUF=o
MAKEFILE=../../proto/libg/Makefile
MACHDEF="MACH=pdp -Rbe-p2" "SUF=o" "ASAR=ar"
MACHDEF="MACH=pdp -Rbe-p2" "SUF=$(SUF)" "ASAR=ar"
PCDEF="PREF=pc" "SUB=" "SRC=lang/pc/libpc"
install:

View file

@ -1,2 +1,4 @@
${MACH?} -I../../../h ${MACHFL?} $1 1>&2
echo `basename $1 $2`.o
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
then echo `basename $1 $2`.o
else exit 1
fi