X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/35c4d2161ea07cfbb4085d7e5242ab9939889afa..3192415c398766f2dba869c6a3c6dad69f300cd7:/Makefile diff --git a/Makefile b/Makefile index 0061b2b..25a2fe0 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,9 @@ 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 > $@ + @echo "// ***Remember to enable/add this part in \`main.rs\`!***" > $@ + @echo >> $@ + @sed '/^\s*\/\/@/d;s|\(\s*\)[^\s].*/\*@\*/|\1unimplemented!()|' $< | sed -f dup-unimpl.sed >> $@ workspace/src/main.rs: # Don't touch this file