diff options
Diffstat (limited to 'latex/Makefile')
-rw-r--r-- | latex/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/latex/Makefile b/latex/Makefile index 590d33d..69bf59f 100644 --- a/latex/Makefile +++ b/latex/Makefile @@ -4,8 +4,8 @@ CONVFLAGS = --from markdown --to html --standalone --template template.html --ma know: $(shell find ./know/concept -mindepth 1 -maxdepth 1 -type d -printf "%p/index.html\\n") for file in $^; do \ - mkdir -p ../static/`dirname $$file` ; \ - cp -v $$file ../static/`dirname $$file`/ ; \ + mkdir -p ../public/`dirname $$file` ; \ + cp -v $$file ../public/`dirname $$file`/ ; \ done know/concept/%/index.html: know/concept/%/source.md template.html main.css |