X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/35c4d2161ea07cfbb4085d7e5242ab9939889afa..55dd9d13e5bce24c6deda1c8fbb5a919da1d0f42:/Makefile diff --git a/Makefile b/Makefile index 0061b2b..c6c80eb 100644 --- a/Makefile +++ b/Makefile @@ -22,12 +22,13 @@ workspace: $(WORKSPACEFILES) workspace/src/%.rs: src/%.rs Makefile dup-unimpl.sed @mkdir -p .tmp/docs @echo "$< -> $@" - @sed '/^\s*\/\/@/d;s|\(\s*\)[^\s].*/\*@\*/|\1unimplemented!()|' $< | sed -f dup-unimpl.sed > $@ + @sed '/^\s*\/\/@/d;s|\(\s*\)\S.*/\*@\*/|\1unimplemented!()|' $< | sed -f dup-unimpl.sed > $@ workspace/src/main.rs: # Don't touch this file # Crates -crates: +crates: $(WORKSPACEFILES) @cargo build @cd solutions && cargo build + @cd workspace && cargo build