cmark

My personal build of CMark ✏️

Commit
c95bf40de24300bcb7a115a2f6ae7a978b7d21ad
Parent
9178ce81c2521bae2bc3a3b2a690d6c192f9e952
Author
John MacFarlane <jgm@berkeley.edu>
Date

Documented more Makefile targets.

Diffstat

1 file changed, 15 insertions, 4 deletions

Status File Name N° Changes Insertions Deletions
Modified README.md 19 15 4
diff --git a/README.md b/README.md
@@ -79,13 +79,24 @@ To run tests:
 
     make test
 
-or:
+(Or `perl runtests.pl spec.txt build/src/cmark` or, in the cmake
+build directory, `ctest -V`.)
 
-    perl runtests.pl spec.txt build/src/cmark
+To test the shared library via a python wrapper:
 
-or (in the cmake build directory):
+    make testlib
 
-    ctest -V
+To run a "fuzz test" against ten long randomly generated inputs:
+
+    make fuzztest
+
+To run a test for memory leaks using valgrind:
+
+    make leakcheck
+
+To make a release tarball:
+
+    make tarball
 
 Installing (JavaScript)
 -----------------------