diff options
author | Mark Mitchell <mark@codesourcery.com> | 1999-10-17 17:59:07 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-10-17 17:59:07 +0000 |
commit | 81631c486ea7b8a6909e40e5f7f9c560a1039f54 (patch) | |
tree | 251f8cbde30e6aac5d35f485ff00a9bf9e6e2c8b /gcc | |
parent | 7192e1387baa0b2d9541b1b1a3da9451461cc23c (diff) | |
download | gcc-81631c486ea7b8a6909e40e5f7f9c560a1039f54.zip gcc-81631c486ea7b8a6909e40e5f7f9c560a1039f54.tar.gz gcc-81631c486ea7b8a6909e40e5f7f9c560a1039f54.tar.bz2 |
Makefile.in (ggc-common.o): Depend on genrtl.h.
* Makefile.in (ggc-common.o): Depend on genrtl.h.
(ggc-simple.o): Likewise.
(ggc-page.o): Likewise.
From-SVN: r30057
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index de17647..1a161f52 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Sun Oct 17 11:02:52 1999 Mark Mitchell <mark@codesourcery.com> + + * Makefile.in (ggc-common.o): Depend on genrtl.h. + (ggc-simple.o): Likewise. + (ggc-page.o): Likewise. + Sun Oct 17 02:09:50 1999 Andrew MacLeod <amacleod@cygnus.com> * basic-block.h (pre_edge_lcm, pre_edge_rev_lcm, compute_available): diff --git a/gcc/Makefile.in b/gcc/Makefile.in index ff57b99..18086d5 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1427,13 +1427,13 @@ dumpvers: dumpvers.c version.o: version.c -ggc-common.o: ggc-common.c $(CONFIG_H) $(RTL_H) $(TREE_H) \ +ggc-common.o: ggc-common.c $(CONFIG_H) $(RTL_H) $(TREE_H) genrtl.h \ flags.h ggc.h varray.h hash.h -ggc-simple.o: ggc-simple.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \ +ggc-simple.o: ggc-simple.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h genrtl.h \ ggc.h varray.h hash.h -ggc-page.o: ggc-page.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \ +ggc-page.o: ggc-page.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h genrtl.h \ ggc.h varray.h hash.h ggc-none.o: ggc-none.c $(CONFIG_H) $(RTL_H) ggc.h |