diff options
author | Tom Tromey <tromey@redhat.com> | 2002-06-10 18:54:31 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2002-06-10 18:54:31 +0000 |
commit | aea185b3f929bd182ac6fc916b3ef75767b30418 (patch) | |
tree | d91819358863ad1ca4ea48077962f9bad667231a | |
parent | afb03408e0b8683bced2c82adfe6c7d4524a9845 (diff) | |
download | gcc-aea185b3f929bd182ac6fc916b3ef75767b30418.zip gcc-aea185b3f929bd182ac6fc916b3ef75767b30418.tar.gz gcc-aea185b3f929bd182ac6fc916b3ef75767b30418.tar.bz2 |
Makefile.in (LANGHOOKS_DEF_H): Include langhooks-def.h.
* Makefile.in (LANGHOOKS_DEF_H): Include langhooks-def.h.
(c-common.o): Depend on langhooks.h.
From-SVN: r54448
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4409487..3c4c61d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-10 Tom Tromey <tromey@redhat.com> + + * Makefile.in (LANGHOOKS_DEF_H): Include langhooks-def.h. + (c-common.o): Depend on langhooks.h. + 2002-06-10 Neil Booth <neil@daikokuya.demon.co.uk> * cpphash.h (_cpp_read_logical_line_trad, diff --git a/gcc/Makefile.in b/gcc/Makefile.in index e03f28a..4e1385a 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -544,7 +544,7 @@ CONFIG_H = $(GCONFIG_H) insn-constants.h insn-flags.h TCONFIG_H = tconfig.h $(xm_file_list) TARGET_H = target.h HOOKS_H = hooks.h -LANGHOOKS_DEF_H = langhooks.h $(HOOKS_H) +LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H) TARGET_DEF_H = target-def.h $(HOOKS_H) TM_P_H = tm_p.h $(tm_p_file_list) tm-preds.h @@ -1231,7 +1231,7 @@ s-under: $(GCC_PASSES) c-common.o : c-common.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) \ $(C_COMMON_H) flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \ $(EXPR_H) $(TM_P_H) builtin-types.def builtin-attrs.def $(TARGET_H) \ - diagnostic.h tree-inline.h except.h gt-c-common.h real.h + diagnostic.h tree-inline.h except.h gt-c-common.h real.h langhooks.h # A file used by all variants of C and some other languages. |