summaryrefslogtreecommitdiff
path: root/paper/lua-filters/table-short-captions/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'paper/lua-filters/table-short-captions/Makefile')
-rw-r--r--paper/lua-filters/table-short-captions/Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/paper/lua-filters/table-short-captions/Makefile b/paper/lua-filters/table-short-captions/Makefile
deleted file mode 100644
index 3df47b1..0000000
--- a/paper/lua-filters/table-short-captions/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-LF = --lua-filter=table-short-captions.lua
-F = -F pandoc-crossref
-
-test: sample.md
- @pandoc -s $(LF) -t native $< | \
- diff -u expected-sample.native -
-
-test-with-crossref: sample.md
- @pandoc -s $(LF) $(F) -t latex $< | \
- diff -u expected-sample.tex -
-
-README.pdf: README.md
- @pandoc $(LF) $(F) $< -o $@
-
-sample.tex: sample.md
- @pandoc -s $(LF) $(F) -t latex $< -o $@
-
-sample.pdf: sample.md
- @pandoc -s $(LF) $(F) -t latex $< -o $@
-
-clean:
- rm -v *.aux *.dvi *.fdb_latexmk *.fls *.log *.lot *.ps *.pdf sample.tex | true
-
-.PHONY: test test-with-crossref clean