diff options
author | Doug Evans <dje@gnu.org> | 1997-07-22 16:25:19 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1997-07-22 16:25:19 +0000 |
commit | d232dfa451bd52b3a29d534a03ffb9164e5adbc1 (patch) | |
tree | acdb7fa43457860d81ae8116a16a9fdceb9ec385 | |
parent | 416c259ae648ae4e5630a5e8acc9b864d400be29 (diff) | |
download | gcc-d232dfa451bd52b3a29d534a03ffb9164e5adbc1.zip gcc-d232dfa451bd52b3a29d534a03ffb9164e5adbc1.tar.gz gcc-d232dfa451bd52b3a29d534a03ffb9164e5adbc1.tar.bz2 |
Makefile.in (Makefile): Pass xmake_file, tmake_file to configure.frag
* Makefile.in (Makefile): Pass xmake_file, tmake_file to
configure.frag
(distclean): Delete Make-host, Make-target.
From-SVN: r14515
-rw-r--r-- | gcc/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 089c3ef..bc98072 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -652,9 +652,9 @@ T = .SUFFIXES: .in .def Makefile: $(srcdir)/Makefile.in config.status $(srcdir)/version.c \ - $(xmake_file) $(tmake_file) \ - $(LANG_MAKEFILES) - $(SHELL) $(srcdir)/configure.frag $(srcdir) "$(SUBDIRS)" + $(xmake_file) $(tmake_file) $(LANG_MAKEFILES) + $(SHELL) $(srcdir)/configure.frag $(srcdir) "$(SUBDIRS)" \ + "$(xmake_file)" "$(tmake_file)" cp config.status config.run $(SHELL) config.run rm -f config.run @@ -2050,7 +2050,7 @@ clean: mostlyclean bytecode.clean lang.clean distclean: clean bytecode.distclean lang.distclean -rm -f tm.h config.h config2.h tconfig.h hconfig.h md cstamp-h -rm -f config.status config.run config.cache config.bak - -rm -f Make-lang Make-hooks + -rm -f Make-lang Make-hooks Make-host Make-target -rm -f Makefile specs.h options.h *.oaux -rm -fr stage1 stage2 stage3 stage4 -rm -f */stage1 */stage2 */stage3 */stage4 */include |