From: Chris Hanson Date: Fri, 8 Dec 2000 19:18:35 +0000 (+0000) Subject: Use autoconf for top-level Makefile. X-Git-Tag: 20090517-FFI~3079 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=04fdf207d40cbde022dc08b4d52d884963eb8623;p=mit-scheme.git Use autoconf for top-level Makefile. --- diff --git a/v7/src/Makefile.in b/v7/src/Makefile.in index 63a66baea..296872cc2 100644 --- a/v7/src/Makefile.in +++ b/v7/src/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.7 2000/12/08 19:17:37 cph Exp $ +# $Id: Makefile.in,v 1.8 2000/12/08 19:18:35 cph Exp $ # # Copyright (c) 2000 Massachusetts Institute of Technology # @@ -68,12 +68,10 @@ EDOPTS = eystep manual midas nntp pasmod print pwedit pwparse snr sort \ techinfo telnet tximod verilog vhdl webster EODIR = $(EDDIR)/autoload -all: compile - $(srcdir)/etc/build-bands.sh - -compile: +all: ( cd microcode && $(MAKE) all ) scheme -compiler -heap 4000 < $(srcdir)/etc/compile.scm + $(srcdir)/etc/build-bands.sh mostlyclean clean distclean maintainer-clean: $(srcdir)/Clean.sh $@ $(SUBDIRS) @@ -81,11 +79,9 @@ mostlyclean clean distclean maintainer-clean: tags TAGS: $(srcdir)/Tags.sh $(SUBDIRS) -install: compile +install: all ( cd microcode; $(MAKE) $@ ) - $(srcdir)/etc/build-bands.sh - $(mkinstalldirs) $(DESTDIR)$(AUXDIR) $(mkinstalldirs) $(DESTDIR)$(AUXDIR)/SRC $(mkinstalldirs) $(DESTDIR)$(AUXDIR)/SRC/edwin @@ -129,5 +125,4 @@ install: compile $(INSTALL_DATA) imail/imail.bld $(DESTDIR)$(AUXDIR)/imail/. $(INSTALL_DATA) $(srcdir)/imail/load.scm $(DESTDIR)$(AUXDIR)/imail/. -.PHONY: all compile mostlyclean clean distclean maintainer-clean -.PHONY: tags TAGS install +.PHONY: all mostlyclean clean distclean maintainer-clean tags TAGS install