"Rev.1.45 of cc_tools/Makefile was a wrong fix for a problem introduced

in rev.1.44 (the egcs to gcc switch).  The problem is that print-rtl.o
is now needed to build some tools, but it wasn't added to the list of
objects which are specially handled because they are prerequisites for
tools."

Submitted by:	bde
This commit is contained in:
obrien 2000-01-29 12:38:21 +00:00
parent c90bceb4a3
commit 34f3db7bba

View File

@ -64,7 +64,7 @@ GENSRCS+= gen$F.c
CLEANFILES+= gen$F CLEANFILES+= gen$F
.endfor .endfor
.ORDER: genrtl.c genrtl.h print-rtl.o .ORDER: genrtl.c genrtl.h
genrtl.c genrtl.h: gengenrtl genrtl.c genrtl.h: gengenrtl
./gengenrtl genrtl.h genrtl.c ./gengenrtl genrtl.h genrtl.c
@ -177,8 +177,8 @@ ${OBJS:Nbitmap.o:Ngenattr.o:Ngencheck.o:Ngencodes.o:Ngenconfig.o:Ngenflags.o:Nge
# Filter out the headers that would cause problems (and a few more when it # Filter out the headers that would cause problems (and a few more when it
# is inconvenient to filter precisely). # is inconvenient to filter precisely).
# #
bitmap.o genattr.o gencodes.o genconfig.o genflags.o obstack.o rtl.o: \ bitmap.o genattr.o gencodes.o genconfig.o genflags.o obstack.o print-rtl.o \
${SRCS:M*.h:Ninsn-*.h} rtl.o: ${SRCS:M*.h:Ninsn-*.h}
gencheck.o: gencheck.h ${SRCS:M*.h:Ngenrtl.h:Ntree-check.h:Ninsn-*.h} gencheck.o: gencheck.h ${SRCS:M*.h:Ngenrtl.h:Ntree-check.h:Ninsn-*.h}
gengenrtl.o: ${SRCS:M*.h:Ngenrtl.h:Ninsn-*.h} gengenrtl.o: ${SRCS:M*.h:Ngenrtl.h:Ninsn-*.h}
.endif .endif