cmark

My personal build of CMark ✏️

Commit
2db928d9a6faec16182ec494d3c0cd3424a03d4e
Parent
8747c9d0350b2f5e704b5c98f47bfc536e96c1eb
Author
John MacFarlane <jgm@berkeley.edu>
Date

'make bench' - don't require rebuilding each time.

Diffstat

1 file changed, 2 insertions, 2 deletions

Status File Name N° Changes Insertions Deletions
Modified Makefile 4 2 2
diff --git a/Makefile b/Makefile
@@ -91,8 +91,8 @@ fuzztest:
 		/usr/bin/env time -p $(PROG) >/dev/null && rm fuzz-$$i.txt ; \
 	done } 2>&1 | grep 'user\|abnormally'
 
-bench: $(BUILDDIR)
-	TIMER=1 make
+bench:
+	# First build with TIMER=1
 	{ for x in `seq 1 100` ; do \
 	  /usr/bin/env time -p ${PROG} progit.md >/dev/null ; \
 	  done \