diff options
author | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-28 06:57:50 +0000 |
---|---|---|
committer | neroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-12-28 06:57:50 +0000 |
commit | 71ab34dfba03526c2b819746fcc92b869f361bec (patch) | |
tree | eabe71655a9d4325ad5004da39f7d32851872fee /Makefile.in | |
parent | ae771b42b91b3328881d6416236b3ecd7fa7663b (diff) | |
download | gcc-71ab34dfba03526c2b819746fcc92b869f361bec.tar.gz |
(toplev)
* configure.in: Convert to autoconf script. Blow away lots
of now-redundant Makefile fragments.
* configure: Generate using Autoconf.
* Makefile.tpl: Rewrite to reflect autoconfiscation.
* Makefile.in: Regenerate.
(config)
* acx.m4: New.
* mh-a68bsd, mh-aix386, mh-apollo68, mh-delta88, mh-hp300,
mh-hpux, mh-hpux8, mh-irix5, mh-irix6, mh-ncrsvr43, mh-openedition,
mh-riscos, mh-sysv: Delete.
* mh-cxux, mh-dgux386, mh-interix, mh-lynxrs6k, mh-ncr3000,
mh-necv4, mh-sco, mh-solaris, mh-sysv4, mh-sysv5, mt-v810: Simplify.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60558 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in index 5e0ae4d942d..aea1381ab87 100644 --- a/Makefile.in +++ b/Makefile.in @@ -369,6 +369,10 @@ all: all.normal .PHONY: all #### host and target specific makefile fragments come in here. +@target_makefile_frag@ +@alphaieee_frag@ +@ospace_frag@ +@host_makefile_frag@ ### # Flags to pass down to all sub-makes. @@ -1086,7 +1090,7 @@ local-clean: local-distclean: -rm -f Makefile config.status config.cache mh-frag mt-frag - -rm -f multilib.out multilib.ts multilib.tmp + -rm -f multilib.out multilib.ts multilib.tmp maybedep.tmp serdep.tmp -if [ "$(TARGET_SUBDIR)" != "." ]; then \ rm -rf $(TARGET_SUBDIR); \ else true; fi @@ -7694,14 +7698,13 @@ multilib.ts: maybe-all-gcc $(srcdir)/Makefile.in: # $(srcdir)/Makefile.tpl $(srcdir)/Makefile.def cd $(srcdir) && autogen Makefile.def -# with the gnu make, this is done automatically. - -host_makefile_frag=@host_makefile_frag@ -target_makefile_frag=@target_makefile_frag@ - -Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag) $(gcc_version_trigger) - $(SHELL) ./config.status +# Rebuilding Makefile. +Makefile: Makefile.in configure $(gcc_version_trigger) + $(SHELL) ./config.status --recheck +# Rebuilding configure. +configure: configure.in + cd $(srcdir) && autoconf # .NOEXPORT: |