aboutsummaryrefslogtreecommitdiff
path: root/gcc/Makefile.in
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2015-04-29 13:32:59 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2015-04-29 13:32:59 +0000
commit72d33bd3d2045888b6fc2c6e651d54a8fe2a598a (patch)
tree0c8da26e381a665d2c016ba146d736f13f9c8491 /gcc/Makefile.in
parent34ba5affde224d69904f0fa068ee07208f85a5f1 (diff)
downloadgcc-72d33bd3d2045888b6fc2c6e651d54a8fe2a598a.zip
gcc-72d33bd3d2045888b6fc2c6e651d54a8fe2a598a.tar.gz
gcc-72d33bd3d2045888b6fc2c6e651d54a8fe2a598a.tar.bz2
Makefile.in (build/genrecog.o): Depend on inchash.h.
gcc/ * Makefile.in (build/genrecog.o): Depend on inchash.h. (build/genrecog$(build_exeext): Depend on build/hash-table.o and build/inchash.o * genrecog.c: Rewrite most of the code except for the third page. From-SVN: r222575
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r--gcc/Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index e1f6f0e..20a34a1 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -2527,7 +2527,8 @@ build/genpeep.o : genpeep.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
build/genpreds.o : genpreds.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h $(OBSTACK_H)
build/genrecog.o : genrecog.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
- coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h
+ coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h \
+ $(HASH_TABLE_H) inchash.h
build/genhooks.o : genhooks.c $(TARGET_DEF) $(C_TARGET_DEF) \
$(COMMON_TARGET_DEF) $(BCONFIG_H) $(SYSTEM_H) errors.h
build/genmddump.o : genmddump.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
@@ -2559,6 +2560,8 @@ genprog = $(genprogerr) check checksum condmd match
# These programs need libs over and above what they get from the above list.
build/genautomata$(build_exeext) : BUILD_LIBS += -lm
+build/genrecog$(build_exeext) : build/hash-table.o build/inchash.o
+
# For stage1 and when cross-compiling use the build libcpp which is
# built with NLS disabled. For stage2+ use the host library and
# its dependencies.