aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAndreas Tobler <a.tobler@schweiz.ch>2004-08-24 09:31:33 +0200
committerAndreas Tobler <andreast@gcc.gnu.org>2004-08-24 09:31:33 +0200
commit4505f099ef97f5784ceb9ccc4f9901cb5fa0b2ff (patch)
treeab997bd681311729f417f3b01a857b39cc55f50f /gcc
parentc2a124b2b4458dc81089e2ebee826816eaf81ff4 (diff)
downloadgcc-4505f099ef97f5784ceb9ccc4f9901cb5fa0b2ff.zip
gcc-4505f099ef97f5784ceb9ccc4f9901cb5fa0b2ff.tar.gz
gcc-4505f099ef97f5784ceb9ccc4f9901cb5fa0b2ff.tar.bz2
Makefile.in (HOOKS_H): Add dependency on MACHMODE_H.
2004-08-24 Andreas Tobler <a.tobler@schweiz.ch> * Makefile.in (HOOKS_H): Add dependency on MACHMODE_H. (host-default.o): Add dependency on HOOKS_H. * config/x-linux: Likewise. * config/x-solaris: Likewise. * config/i386/x-mingw32: Likewise. * config/rs6000/x-darwin: Likewise. From-SVN: r86468
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog9
-rw-r--r--gcc/Makefile.in6
-rw-r--r--gcc/config/i386/x-mingw322
-rw-r--r--gcc/config/rs6000/x-darwin2
-rw-r--r--gcc/config/x-linux2
-rw-r--r--gcc/config/x-solaris2
6 files changed, 16 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 26b0e42..9fb614a 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,12 @@
+2004-08-24 Andreas Tobler <a.tobler@schweiz.ch>
+
+ * Makefile.in (HOOKS_H): Add dependency on MACHMODE_H.
+ (host-default.o): Add dependency on HOOKS_H.
+ * config/x-linux: Likewise.
+ * config/x-solaris: Likewise.
+ * config/i386/x-mingw32: Likewise.
+ * config/rs6000/x-darwin: Likewise.
+
2004-08-23 James E Wilson <wilson@specifixinc.com>
* reg-notes.def (REG_NOTE): In comment, change DEF_INSN_NOTE to
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 14de81e..0d2db38 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -669,10 +669,10 @@ GTM_H = tm.h $(tm_file_list)
TM_H = $(GTM_H) insn-constants.h insn-flags.h
TARGET_H = $(TM_H) target.h insn-modes.h
-HOOKS_H = hooks.h
+MACHMODE_H = machmode.h mode-classes.def insn-modes.h
+HOOKS_H = hooks.h $(MACHMODE_H)
LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H)
TARGET_DEF_H = target-def.h $(HOOKS_H)
-MACHMODE_H = machmode.h mode-classes.def insn-modes.h
RTL_BASE_H = rtl.h rtl.def $(MACHMODE_H) reg-notes.def insn-notes.def \
input.h statistics.h
RTL_H = $(RTL_BASE_H) genrtl.h
@@ -1786,7 +1786,7 @@ passes.o : passes.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
main.o : main.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h
-host-default.o : host-default.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
+host-default.o : host-default.c $(CONFIG_H) $(SYSTEM_H) $(HOOKS_H) coretypes.h \
hosthooks.h hosthooks-def.h
rtl-error.o: rtl-error.c $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(INSN_ATTR_H) \
diff --git a/gcc/config/i386/x-mingw32 b/gcc/config/i386/x-mingw32
index 8b6a985..fd57464 100644
--- a/gcc/config/i386/x-mingw32
+++ b/gcc/config/i386/x-mingw32
@@ -4,6 +4,6 @@
local_includedir=$(libsubdir)/$(unlibsubdir)/..`echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/include
host-mingw32.o : $(srcdir)/config/i386/host-mingw32.c $(CONFIG_H) $(SYSTEM_H) \
- coretypes.h hosthooks.h hosthooks-def.h toplev.h diagnostic.h
+ coretypes.h hosthooks.h hosthooks-def.h toplev.h diagnostic.h $(HOOKS_H)
$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
$(srcdir)/config/i386/host-mingw32.c
diff --git a/gcc/config/rs6000/x-darwin b/gcc/config/rs6000/x-darwin
index f7242a7..e133c21 100644
--- a/gcc/config/rs6000/x-darwin
+++ b/gcc/config/rs6000/x-darwin
@@ -1,4 +1,4 @@
host-darwin.o : $(srcdir)/config/rs6000/host-darwin.c $(CONFIG_H) $(SYSTEM_H) \
- coretypes.h hosthooks.h hosthooks-def.h toplev.h diagnostic.h
+ coretypes.h hosthooks.h hosthooks-def.h toplev.h diagnostic.h $(HOOKS_H)
$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
$(srcdir)/config/rs6000/host-darwin.c
diff --git a/gcc/config/x-linux b/gcc/config/x-linux
index d14586b..e4aa040 100644
--- a/gcc/config/x-linux
+++ b/gcc/config/x-linux
@@ -1,4 +1,4 @@
host-linux.o : $(srcdir)/config/host-linux.c $(CONFIG_H) $(SYSTEM_H) \
- coretypes.h hosthooks.h hosthooks-def.h
+ coretypes.h hosthooks.h hosthooks-def.h $(HOOKS_H)
$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
$(srcdir)/config/host-linux.c
diff --git a/gcc/config/x-solaris b/gcc/config/x-solaris
index 782f4a3..59c7bf6 100644
--- a/gcc/config/x-solaris
+++ b/gcc/config/x-solaris
@@ -1,4 +1,4 @@
host-solaris.o : $(srcdir)/config/host-solaris.c $(CONFIG_H) $(SYSTEM_H) \
- coretypes.h hosthooks.h hosthooks-def.h
+ coretypes.h hosthooks.h hosthooks-def.h $(HOOKS_H)
$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
$(srcdir)/config/host-solaris.c