-
Notifications
You must be signed in to change notification settings - Fork 987
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve makefile cooperation with zuofiles (#733)
Use `+` more consistently to ensure that jobserver flags are passed along to `zuo`. Also, use an upgraded Zuo so that `make` flags like `-n`/`--print-only` are propagated to Zuo and recognized to avoid actually building --- except that `zuo` itself is built even by `make -n`. Some zuofile changes here take advantage of Zuo support for dry-run modes like `-n`, but it's a very limited effort. Reporting of would-be build steps remains shallow.
- Loading branch information
Showing
3 changed files
with
38 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule zuo
updated
30 files
+5 −3 | README.md | |
+142 −46 | lib/zuo/build.zuo | |
+11 −0 | lib/zuo/cmdline.zuo | |
+54 −0 | lib/zuo/dry-run.zuo | |
+3 −3 | lib/zuo/jobserver.zuo | |
+6 −3 | lib/zuo/private/base-common/entry.zuo | |
+8 −4 | lib/zuo/private/cmdline-run.zuo | |
+4 −2 | lib/zuo/private/main.zuo | |
+7 −3 | lib/zuo/private/more.zuo | |
+1 −1 | lib/zuo/shell.zuo | |
+18 −6 | lib/zuo/thread.zuo | |
+43 −25 | local/image.zuo | |
+43 −0 | tests/build-cycle.zuo | |
+19 −0 | tests/build.zuo | |
+1 −0 | tests/file-handle.zuo | |
+12 −0 | tests/filesystem.zuo | |
+1 −0 | tests/main.zuo | |
+6 −0 | tests/thread.zuo | |
+24 −2 | zuo-doc/fake-zuo.rkt | |
+1 −0 | zuo-doc/lang-zuo-datum.scrbl | |
+3 −3 | zuo-doc/lang-zuo-hygienic.scrbl | |
+111 −69 | zuo-doc/lang-zuo.scrbl | |
+21 −7 | zuo-doc/overview.scrbl | |
+90 −0 | zuo-doc/reader.scrbl | |
+4 −1 | zuo-doc/real-racket.rkt | |
+59 −29 | zuo-doc/zuo-build.scrbl | |
+47 −10 | zuo-doc/zuo-lib.scrbl | |
+1 −0 | zuo-doc/zuo.scrbl | |
+128 −58 | zuo.c | |
+85 −8 | zuo.h |