summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-29 19:24:46 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-29 19:25:58 -0800
commitd76f07909ff44a36b0ea6e993484ad9e9fd6ff11 (patch)
tree88e2b3973452a5c02c3e70f0dce54d310a06a750 /Makefile
parentc1d5685baa7d53d8a41160b487681498c3c79993 (diff)
Use make_man_page.py + pandoc to create cmark.3 man page from cmark.h.
See #224.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8178455..6fcc956 100644
--- a/Makefile
+++ b/Makefile
@@ -77,8 +77,8 @@ man/man1/cmark.1: man/cmark.1.md
man/man3/cmark.3: man/cmark.3.md
mkdir -p man/man3 && pandoc -t man -s $< -o $@
-apidoc: src/cmark.h
- doxygen Doxyfile
+man/cmark.3.md: src/cmark.h
+ python man/make_man_page.py $< > $@
# We include html_unescape.h in the repository, so this shouldn't
# normally need to be generated.