diff options
author | ru <ru@FreeBSD.org> | 2004-08-18 13:21:40 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-08-18 13:21:40 +0000 |
commit | 115cded1038aaa6c7c3d45e9a12cfd194c04c6ae (patch) | |
tree | d93c67f45401a6ec15b05e51f14f754df0fb074c /gnu | |
parent | e6a08577af70d1afa15b0030840eb6171b7d70b9 (diff) | |
download | FreeBSD-src-115cded1038aaa6c7c3d45e9a12cfd194c04c6ae.zip FreeBSD-src-115cded1038aaa6c7c3d45e9a12cfd194c04c6ae.tar.gz |
A fix from rev. 1.52 of gnu/usr.bin/cc/cc_tools/Makefile was lost
in rev. 1.57. Fix this regression by making cc_tools a new-style
build-tool in Makefile.inc1. For details of what has been fixed,
please see the gnu/usr.bin/cc/cc_tools/Makefile,v 1.52 commit log.
Caught this by accidentally touching param.h while in the process
of cross-buildworld for amd64.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 45d33e5..797434a 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -73,8 +73,6 @@ gen-time-stamp: genattr genattrtab genconditions genconstants genemit \ touch ${.TARGET} .for F in attr codes config emit extract flags opinit output peep recog -build-tools: gen$F - gen$F: gen$F.o rtl.o print-rtl.o bitmap.o gensupport.o ggc-none.o \ read-rtl.o insn-conditions.o min-insn-modes.o errors.o ${LIBIBERTY} ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} @@ -86,8 +84,6 @@ CLEANFILES+= gen$F # # genattrtab needs more complex build rule # -build-tools: genattrtab - genattrtab : genattrtab.o rtl.o print-rtl.o bitmap.o gensupport.o ggc-none.o \ read-rtl.o insn-conditions.o genautomata.o varray.o min-insn-modes.o \ errors.o ${LIBIBERTY} @@ -101,8 +97,6 @@ CLEANFILES+= genattrtab # they should be liked with dummy-conditions.o stubs instead # .for F in constants conditions -build-tools: gen$F - gen$F: gen$F.o rtl.o bitmap.o gensupport.o ggc-none.o read-rtl.o dummy-conditions.o min-insn-modes.o errors.o ${LIBIBERTY} ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} @@ -111,8 +105,6 @@ CLEANFILES+= gen$F .endfor .for F in modes check genrtl preds -build-tools: gen$F - gen$F: gen$F.o errors.o ${LIBIBERTY} ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} @@ -207,7 +199,6 @@ CLEANFILES+= gt-*.h gtype-*.h .if !defined(NO_FORTRAN) gen-time-stamp: fini -build-tools: fini fini: fini.o ${LIBIBERTY} ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} SRCS+= fini.c @@ -470,7 +461,6 @@ SRCS+= ${GENSRCS} CLEANFILES+= ${GENSRCS} all: ${SRCS} -build-tools: ${SRCS} .include <bsd.prog.mk> |