diff options
author | obrien <obrien@FreeBSD.org> | 1999-04-08 12:26:07 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-04-08 12:26:07 +0000 |
commit | 5810f4ab829f766202aa3d7875c044c494db6f62 (patch) | |
tree | 94663ed5f9b4f10ce1025bd55abd7f0fe3f53538 /gnu/usr.bin | |
parent | 837bd857099da9c4093fa465b1117d9c1655a1f5 (diff) | |
download | FreeBSD-src-5810f4ab829f766202aa3d7875c044c494db6f62.zip FreeBSD-src-5810f4ab829f766202aa3d7875c044c494db6f62.tar.gz |
Remove some of the dependencies. This removes the cycles I was getting on
`make -j 8' builds.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 511487a..feb94e8 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.20 1999/04/08 09:21:52 obrien Exp $ +# $Id: Makefile,v 1.21 1999/04/08 09:57:51 obrien Exp $ # # @@ -186,7 +186,9 @@ OBJS+= ${SRCS:N*.h:R:S/$/.o/g} # would do if we defined PROG, except for leaving out dependencies on # insn-*.h because these dependencies would be circular. # -${OBJS}: ${SRCS:M*.h:Ninsn-*.h:Ngenrtl.h} +# XXX pre-egcs we used something simular to this line. Now it causes cycles... +# ${OBJS}: ${SRCS:M*.h:Ninsn-*.h:Ntree-check.h:Ngenrtl.h} +${OBJS}: ${COMMONHDRS:M*.h} # Give all dependencies on insn-*.h explicitly # This suffices for `make -j<any> depend', and after that all |