From 1bedbcee8a66eeb1d9dbaf172d237a1b8c84939a Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 29 Nov 2014 17:33:54 -0800 Subject: Added very basic cmark.3 man page, added to install process. This currently just contains a list of functions. It needs some accompanying text, commentary, examples. See #224. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 2d9a483..8178455 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ all: $(BUILDDIR) check: @cmake --version > /dev/null || (echo "You need cmake to build this program: http://www.cmake.org/download/" && exit 1) -$(BUILDDIR): check $(SRCDIR)/html/html_unescape.h $(SRCDIR)/case_fold_switch.inc man/man1/cmark.1 +$(BUILDDIR): check $(SRCDIR)/html/html_unescape.h $(SRCDIR)/case_fold_switch.inc man/man1/cmark.1 man/man3/cmark.3 mkdir -p $(BUILDDIR); \ cd $(BUILDDIR); \ cmake .. -G "$(GENERATOR)" -DCMAKE_BUILD_TYPE=$(BUILD_TYPE) @@ -74,6 +74,9 @@ $(PROG): all man/man1/cmark.1: man/cmark.1.md mkdir -p man/man1 && pandoc -t man -s $< -o $@ +man/man3/cmark.3: man/cmark.3.md + mkdir -p man/man3 && pandoc -t man -s $< -o $@ + apidoc: src/cmark.h doxygen Doxyfile -- cgit v1.2.3