adapted to get .o files

This commit is contained in:
ceriel 1987-01-08 11:09:06 +00:00
parent 8f8e0242d8
commit 97f8083ee0
4 changed files with 16 additions and 8 deletions

View file

@ -1,5 +1,5 @@
MAKEFILE=../../proto/libg/Makefile
MACHDEF="MACH=i86" "SUF=s"
MACHDEF="MACH=i86" "SUF=o" "ASAR=aal"
BCDEF="PREF=bc" "SUB=" "SRC=lang/basic/lib"
install:
@ -11,7 +11,7 @@ cmp:
-../../compare tail_bc
clean:
-rm -f *.old *.[ce$(SUF)] tail* head*
-rm -f *.old *.[ce$(SUF)] tail* head*
opr:
make pr | opr

View file

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

View file

@ -1,5 +1,5 @@
MAKEFILE=../../proto/libg/Makefile
MACHDEF="MACH=i86" "SUF=s"
MACHDEF="MACH=i86" "SUF=o" "ASAR=aal"
PCDEF="PREF=pc" "SUB=" "SRC=lang/pc/libpc"
install:
@ -11,7 +11,7 @@ cmp:
-../../compare tail_pc
clean:
-rm -f *.old *.[ce$(SUF)] tail* head*
-rm -f *.old *.[ce$(SUF)] tail* head*
opr:
make pr | opr

View file

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