From: Taylor R Campbell Date: Tue, 4 Jun 2013 17:19:21 +0000 (+0000) Subject: Syntax and compile win32 separately in the top-level makefile. X-Git-Tag: release-9.2.0~160 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=856c11df2d135010910166983182774a91a86620;p=mit-scheme.git Syntax and compile win32 separately in the top-level makefile. --- diff --git a/src/Makefile.in b/src/Makefile.in index 5956f1330..a10cf91c8 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -191,7 +191,7 @@ BOOTSTRAP_TOOLCHAIN = \ .PHONY: syntax-edwin syntax-edwin: bootstrap-toolchain syntax-edwin: compile-xml -syntax-edwin: compile-win32 +syntax-edwin: syntax-win32 (echo '(with-working-directory-pathname "edwin"' && \ echo ' (lambda ()' && \ echo ' (load "edwin.sf")' && \ @@ -230,9 +230,20 @@ compile-ssp: bootstrap-toolchain compile-ssp: compile-xml echo '(compile-dir "ssp")' | $(BOOTSTRAP_TOOLCHAIN) +.PHONY: syntax-win32 +syntax-win32: bootstrap-toolchain + (echo '(with-working-directory-pathname "win32"' && \ + echo ' (lambda ()' && \ + echo ' (load "win32.sf")' && \ + echo ' (echo-cref-output "win32")))') \ + | $(BOOTSTRAP_TOOLCHAIN) + .PHONY: compile-win32 compile-win32: bootstrap-toolchain - echo '(compile-dir "win32")' | $(BOOTSTRAP_TOOLCHAIN) +compile-win32: syntax-win32 + (echo '(with-working-directory-pathname "win32"' && \ + echo ' (lambda () (load "win32.cbf")))') \ + | $(BOOTSTRAP_TOOLCHAIN) .PHONY: compile-xml compile-xml: bootstrap-toolchain