diff options
author | Doug Evans <dje@gnu.org> | 1997-07-25 19:26:32 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1997-07-25 19:26:32 +0000 |
commit | 88393a073ba71183c04fad2b5700219a1f98c87d (patch) | |
tree | ffd85751feffc61b6c13c261dc9345bc4a12d196 /gcc | |
parent | 3e056efc31aab68f650a3fa5918ca2d7fb516852 (diff) | |
download | gcc-88393a073ba71183c04fad2b5700219a1f98c87d.zip gcc-88393a073ba71183c04fad2b5700219a1f98c87d.tar.gz gcc-88393a073ba71183c04fad2b5700219a1f98c87d.tar.bz2 |
Makefile.in (native): Depend on config.h.
* Makefile.in (native): Depend on config.h.
(gcc.o): Depend on Makefile, not config.status.
From-SVN: r14529
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index bc98072..8d21fdc 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -704,7 +704,8 @@ start.encap: native xgcc specs $(LIBGCC1) xlimits.h lang.start.encap rest.encap: stmp-headers $(LIBGCC) $(STMP_FIXPROTO) $(EXTRA_PARTS) lang.rest.encap # This is what is made with the host's compiler # whether making a cross compiler or not. -native: config.status cpp $(LANGUAGES) $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) +native: config.status config.h cpp $(LANGUAGES) \ + $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) # Define the names for selecting languages in LANGUAGES. C c: cc1 @@ -1206,7 +1207,7 @@ DRIVER_DEFINES = \ -DDEFAULT_TARGET_VERSION=\"$(version)\" \ -DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \ -DTOOLDIR_BASE_PREFIX=\"$(exec_prefix)/\" -gcc.o: gcc.c $(CONFIG_H) multilib.h config.status $(lang_specs_files) +gcc.o: gcc.c $(CONFIG_H) multilib.h Makefile $(lang_specs_files) $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \ $(DRIVER_DEFINES) \ -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'` |