cmark

My personal build of CMark ✏️

Commit
aef7803ebf8704b90e310edabfa4d13f3e1cb0a0
Parent
2e3ab1464f9e4e8b00ebb15ea0f5a0afd2df7263
Author
John MacFarlane <jgm@berkeley.edu>
Date

Removed man/Makefile. Put target in main Makefile.

Diffstat

2 files changed, 4 insertions, 8 deletions

Status File Name N° Changes Insertions Deletions
Modified Makefile 5 4 1
Deleted man/Makefile 7 0 7
diff --git a/Makefile b/Makefile
@@ -14,7 +14,7 @@ PROG?=$(BUILDDIR)/src/cmark
 
 .PHONY: all spec leakcheck clean fuzztest dingus upload jshint test testjs benchjs update-site upload-site check
 
-all: check
+all: check man/man1/cmark.1
 	mkdir -p $(BUILDDIR); cd build; cmake ..; make
 
 install: check
@@ -28,6 +28,9 @@ check:
 
 $(PROG): all
 
+man/man1/cmark.1: man/cmark.1.md
+	pandoc $< -o $@ -s -t man
+
 README.html: README.md template.html
 	pandoc --template template.html -S -s -t html5 -o $@ $<
 
diff --git a/man/Makefile b/man/Makefile
@@ -1,7 +0,0 @@
-ALL=man1/cmark.1
-
-.PHONY: all
-
-all: $(ALL)
-man1/%.1: %.1.md
-	pandoc $< -o $@ -s -t man