X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/e8e3f9b3dec1e5e8a6ed6c59cfa661df2252f3db..ab7f9b241429bd675b437d2437799de75d2f409b:/Makefile diff --git a/Makefile b/Makefile index a213c07..c157dac 100644 --- a/Makefile +++ b/Makefile @@ -22,18 +22,22 @@ docs/%.html: .tmp/docs/%.rs # The generated files are shipped only for the benefit of Windows users, who # typically don't have the necessary tools for generating the workspace # available. -workspace: $(WORKSPACEFILES) +workspace: $(WORKSPACEFILES) docs/workspace.zip workspace/src/%.rs: src/%.rs Makefile dup-unimpl.sed - @mkdir -p .tmp/docs + @mkdir -p .tmp/docs workspace/src/ @echo "$< -> $@" - @# sed-fu: remove lines starting with "//@", and replace those ending in "/*@*/" by "unimplemented!()". + @# sed-fu: remove lines starting with "//@", and replace those ending in "/*@*/" or "/*@@*/" by "unimplemented!()". @# Also coalesce multiple adjacent such lines to one. @sed '/^\s*\/\/@/d;s|\(\s*\)\S.*/\*@@\?\*/|\1unimplemented!()|' $< | sed -f dup-unimpl.sed > $@ workspace/src/main.rs: # Don't touch this file +docs/workspace.zip: $(WORKSPACEFILES) workspace/Cargo.toml workspace/Cargo.lock + @rm -f $@ + zip $@ $^ + ## Crates crates: $(WORKSPACEFILES) @cargo build