cmark

My personal build of CMark ✏️

Commit
9a5c98fe0d6de2a1a940bc8b3209ba0c4fadf7c4
Parent
c864bc1221b4531012b2c172a26279f720258b78
Author
John MacFarlane <fiddlosopher@gmail.com>
Date

Added 'make astyle' to reformat code consistently.

Diffstat

1 file changed, 5 insertions, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified Makefile 6 5 1
diff --git a/Makefile b/Makefile
@@ -19,7 +19,7 @@ PROG?=$(BUILDDIR)/src/cmark
 BENCHINP?=README.md
 JSMODULES=$(wildcard js/lib/*.js)
 
-.PHONY: all spec leakcheck clean fuzztest dingus upload jshint test testjs benchjs update-site upload-site check npm debug mingw archive tarball ziparchive testarchive testtarball testziparchive testlib bench apidoc
+.PHONY: all spec leakcheck clean fuzztest dingus upload jshint test testjs benchjs update-site upload-site check npm debug mingw archive tarball ziparchive testarchive testtarball testziparchive testlib bench astyle
 
 all: $(PROG)
 	@echo "Binaries can be found in $(BUILDDIR)/src"
@@ -142,6 +142,10 @@ bench: $(BENCHFILE)
 		  done \
 	} 2>&1  | grep 'real' | awk '{print $$2}' | python3 'bench/stats.py'
 
+astyle:
+	astyle --style=linux -t -p -r  'src/*.c' --exclude=scanners.c
+	astyle --style=linux -t -p -r  'src/*.h' --exclude=html_unescape.h
+
 operf: $(PROG)
 	operf $(PROG) <$(BENCHINP) >/dev/null