summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-07-03 22:12:49 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2015-07-05 16:11:36 -0700
commitafc1b89ac71b642a841c8b79ea0ec6b70d2adae5 (patch)
tree4ef3e3080d2d38ca8514a6e3055c4817163b3012 /Makefile
parent46e9ed6e0c118dc6b6a4a4833d6c960701849fdb (diff)
Added LaTeX renderer.
* New exported function in API: `cmark_render_latex`. * Added src/latex.hs. * Updated README and man page. * Closes #31.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f11431c..ddcd105 100644
--- a/Makefile
+++ b/Makefile
@@ -132,7 +132,7 @@ $(ALLTESTS): $(SPEC)
leakcheck: $(ALLTESTS)
rc=0; \
- for format in html man xml commonmark; do \
+ for format in html man xml latex commonmark; do \
for opts in "" "--smart" "--normalize"; do \
echo "cmark -t $$format $$opts" ; \
cat $< | valgrind -q --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) -t $$format $$opts >/dev/null || rc=1; \