summaryrefslogtreecommitdiff
path: root/paper/lua-filters/track-changes/Makefile
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2019-08-14 19:12:37 +0200
committerChristoph Helma <helma@in-silico.ch>2019-08-14 19:12:37 +0200
commitb6ad21e340bce9ba2a2ad09fe48c656f0c2e3905 (patch)
tree6a248cfe29fb720491559e5973d8c1f1904bcc33 /paper/lua-filters/track-changes/Makefile
parent9a217185e791d6abbe46549cd4e87c1d1a643c05 (diff)
directory reorganization, evaluation scripts for R CVs
Diffstat (limited to 'paper/lua-filters/track-changes/Makefile')
-rw-r--r--paper/lua-filters/track-changes/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/paper/lua-filters/track-changes/Makefile b/paper/lua-filters/track-changes/Makefile
deleted file mode 100644
index 990450e..0000000
--- a/paper/lua-filters/track-changes/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-.PHONY: test clean
-
-## PENDING: ensure that LaTeX output can be compiled to PDF.
-test: sample.md test-track-changes.sh sample.pdf
- @pandoc -t markdown --wrap=preserve \
- --lua-filter=track-changes.lua sample.md | \
- diff --strip-trailing-cr -u - expected_accept.markdown
- @pandoc -t markdown --wrap=preserve --track-changes=reject \
- -M trackChanges:reject --lua-filter=track-changes.lua sample.md | \
- diff --strip-trailing-cr -u - expected_reject.markdown
- @pandoc -s -t html --wrap=preserve --track-changes=all \
- -M trackChanges:all --lua-filter=track-changes.lua sample.md | \
- diff --strip-trailing-cr -u - expected_draft.html
- @pandoc -M trackChanges:all --track-changes=all --wrap=preserve \
- --to=latex --lua-filter=track-changes.lua \
- --standalone sample.md | \
- sh test-track-changes.sh
- @rm sample.pdf
-
-sample.pdf: sample.md track-changes.lua
- @pandoc -M trackChanges:all --track-changes=all \
- --lua-filter=track-changes.lua \
- --output $@ $<
-
-clean:
- rm sample.pdf || true