diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-11-03 19:42:17 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-11-03 19:42:17 +0000 |
commit | 426159a48b9f9cd6693eaf459e49cc5f8c212b16 (patch) | |
tree | 1cf9ab646a8d37a3f2a77da1427a0b5c9d9915f3 /gcc | |
parent | da61dec94bb88a1f29a984ad3a311a83f696e751 (diff) | |
download | gcc-426159a48b9f9cd6693eaf459e49cc5f8c212b16.zip gcc-426159a48b9f9cd6693eaf459e49cc5f8c212b16.tar.gz gcc-426159a48b9f9cd6693eaf459e49cc5f8c212b16.tar.bz2 |
Makefile.in (fold-const.o): Depend on $(GGC_H), not ggc.h.
* Makefile.in (fold-const.o): Depend on $(GGC_H), not ggc.h.
(toplev.o): Likewise for $(LOOP_H)/loop.h and $(REGS_H)/regs.h.
(simplify-rtx.o): Likewise for $(GGC_H)/ggc.h.
From-SVN: r37229
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 c5fe3b6..9256eae 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2000-11-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * Makefile.in (fold-const.o): Depend on $(GGC_H), not ggc.h. + (toplev.o): Likewise for $(LOOP_H)/loop.h and $(REGS_H)/regs.h. + (simplify-rtx.o): Likewise for $(GGC_H)/ggc.h. + 2000-11-03 Joseph S. Myers <jsm28@cam.ac.uk> * c-decl.c (duplicate_decls, copy_lang_decl), dwarfout.c diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 27561cd..95fa84a 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1284,7 +1284,7 @@ print-tree.o : print-tree.c $(CONFIG_H) system.h $(TREE_H) $(GGC_H) stor-layout.o : stor-layout.c $(CONFIG_H) system.h $(TREE_H) flags.h \ function.h $(EXPR_H) $(RTL_H) toplev.h $(GGC_H) fold-const.o : fold-const.c $(CONFIG_H) system.h $(TREE_H) flags.h toplev.h \ - $(RTL_H) ggc.h + $(RTL_H) $(GGC_H) diagnostic.o : diagnostic.c diagnostic.h \ $(CONFIG_H) system.h $(TREE_H) $(RTL_H) tm_p.h flags.h \ $(GGC_H) input.h $(INSN_ATTR_H) insn-codes.h insn-config.h toplev.h intl.h @@ -1292,7 +1292,7 @@ toplev.o : toplev.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) function.h \ flags.h input.h $(INSN_ATTR_H) xcoffout.h defaults.h output.h diagnostic.h \ insn-codes.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h dwarfout.h \ dwarf2out.h sdbout.h dbxout.h $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) \ - graph.h loop.h except.h regs.h $(TIMEVAR_H) $(lang_options_files) ssa.h + graph.h $(LOOP_H) except.h $(REGS_H) $(TIMEVAR_H) $(lang_options_files) ssa.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(MAYBE_USE_COLLECT2) \ -DTARGET_NAME=\"$(target_alias)\" \ -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'` @@ -1363,7 +1363,7 @@ jump.o : jump.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h $(REGS_H) \ simplify-rtx.o : simplify-rtx.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) \ hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \ - output.h function.h cselib.h ggc.h $(OBSTACK_H) + output.h function.h cselib.h $(GGC_H) $(OBSTACK_H) cse.o : cse.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) hard-reg-set.h flags.h \ real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h output.h function.h \ $(BASIC_BLOCK_H) $(GGC_H) |