[3426] in Athena Bugs
6.3B: make
daemon@ATHENA.MIT.EDU (probe@ATHENA.MIT.EDU)
Sun Oct 15 10:39:24 1989
From: probe@ATHENA.MIT.EDU
Date: Sun, 15 Oct 89 10:39:09 -0400
To: bugs@ATHENA.MIT.EDU
Reply-To: Richard Basch <probe@ATHENA.MIT.EDU>
63% make -n
######################## Entering /source/4.3/bin/awk ########################
cmp -s y.tab.h awk.h || cp y.tab.h awk.h
lex awk.lx.l
cc -O -c lex.yy.c
rm lex.yy.c
mv lex.yy.o awk.lx.o
cc -O -c b.c
cc -O -c main.c
rm -rf temp temp1
ex - <tokenscript
mv -f temp1 token.c
cc -O -c token.c
cc -O -c tran.c
cc -O -c lib.c
cc -O -c run.c
cc -O -c parse.c
cc -O -c proc.c
cc -o proc proc.o token.o
rm -f proctab.c #Make sure this is gone
./proc >proctab.c
cc -O -c proctab.c
cc -O awk.g.o awk.lx.o b.o main.o token.o tran.o lib.o run.o parse.o proctab.o
freeze.o -lm -o awk
######################### Exiting /source/4.3/bin/awk ########################
<minos!probe> {/source/4.3/bin/awk}
64% make
######################## Entering /source/4.3/bin/awk ########################
######################### Exiting /source/4.3/bin/awk ########################
This seems inconsistent... "make -n" is supposed to tell me what it is
going to do... If the behavior has changed to report all the rules,
then it should be documented, as this is a change in the last release.
Also, it would be nice to also have the functionality of telling me what
it has left to do... I just got very confused by the huge list while
performing the full build on the RT...
-Richard