From 9b66bdd02b4ca18f9b48b8903599bbdef4dd599a Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sun, 11 Jan 2015 10:46:51 -0800 Subject: Added cmark.3 man page to repository and archive. It simplifies the build if python and the cmark library aren't needed to build the man page. The top level Makefile has a rule to regenerate this when src/cmark.h changes. Updated Makefile.nmake for recent changes. Added case folding data file to archive, since otherwise make fails. --- man/make_man_page.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'man/make_man_page.py') diff --git a/man/make_man_page.py b/man/make_man_page.py index 2202309..fe968b4 100644 --- a/man/make_man_page.py +++ b/man/make_man_page.py @@ -21,9 +21,9 @@ from ctypes import CDLL, c_char_p, c_long, c_void_p sysname = platform.system() if sysname == 'Darwin': - cmark = CDLL("../src/libcmark.dylib") + cmark = CDLL("build/src/libcmark.dylib") else: - cmark = CDLL("../src/libcmark.so") + cmark = CDLL("build/src/libcmark.so") parse_document = cmark.cmark_parse_document parse_document.restype = c_void_p -- cgit v1.2.3