document 'make workspace'
[rust-101.git] / Makefile
1 FILES=$(wildcard src/*.rs)
2 DOCFILES=$(addsuffix .html,$(addprefix docs/,$(notdir $(basename $(FILES)))))
3 WORKSPACEFILES=$(addprefix workspace/,$(FILES))
4
5 all: docs workspace crates
6 .PHONY: docs workspace crates
7
8 ## Documentation
9 docs: $(DOCFILES)
10
11 .tmp/docs/%.rs: src/%.rs Makefile
12         @mkdir -p .tmp/docs
13         @echo "$< -> $@"
14         @# sed-fu: remove the "@" from "//@", and remove trailing "/*@*/".
15         @sed 's|^\(\s*//\)@|\1|;s|\s*/\*@\*/$$||' $< > $@
16
17 docs/%.html: .tmp/docs/%.rs
18         @./pycco-rs $<
19
20 ## Workspace
21 # The generated files are shipped only for the benefit of Windows users, who
22 # typically don't have the necessary tools for generating the workspace
23 # available.
24 workspace: $(WORKSPACEFILES)
25
26 workspace/src/%.rs: src/%.rs Makefile dup-unimpl.sed
27         @mkdir -p .tmp/docs
28         @echo "$< -> $@"
29         @# sed-fu: remove lines starting with "//@", and replace those ending in "/*@*/" by "unimplemented!()".
30         @# Also coalesce multiple adjacent such lines to one.
31         @sed '/^\s*\/\/@/d;s|\(\s*\)\S.*/\*@\*/|\1unimplemented!()|' $< | sed -f dup-unimpl.sed > $@
32
33 workspace/src/main.rs:
34         # Don't touch this file
35
36 ## Crates
37 crates: $(WORKSPACEFILES)
38         @cargo build
39         @cd solutions && cargo build
40         @cd workspace && cargo build