cmark

My personal build of CMark ✏️

Commit
25ccf653e8be351bb2c5d89236d3e0e960ae7a45
Parent
85d495dbe23fc40e718167fa423559f2c9a3121c
Author
John MacFarlane <jgm@berkeley.edu>
Date

Improved tarball target.

Diffstat

1 file changed, 2 insertions, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified Makefile 3 2 1
diff --git a/Makefile b/Makefile
@@ -32,7 +32,8 @@ debug:
 tarball:
 	rm -rf $(PKGDIR); \
 	mkdir -p $(PKGDIR)/man/man1; \
-	cp -r src/* $(PKGDIR)/; \
+	cp -r src $(PKGDIR)/; \
+	cp CMakeLists.txt $(PKGDIR); \
 	cp man/man1/cmark.1 $(PKGDIR)/man/man1/; \
 	cp README.md LICENSE spec.txt runtests.pl $(PKGDIR)/; \
 	tar cvzf cmark-$(SPECVERSION).tar.gz $(PKGDIR)