From afffab6f9ec22de7bad1cdda99c0cc187cd6a826 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 12 Nov 2014 08:39:42 -0800 Subject: Improved tarball target. Include spec.html. Delete temp directory after creating tarball. --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b3eb921..1297fc8 100644 --- a/Makefile +++ b/Makefile @@ -29,15 +29,17 @@ debug: cmake .. -DCMAKE_BUILD_TYPE=Debug; \ cmake --build . -tarball: +tarball: spec.html rm -rf $(PKGDIR); \ mkdir -p $(PKGDIR)/man/man1; \ cp -r src $(PKGDIR)/; \ + cp spec.html $(PKGDIR); \ cp CMakeLists.txt $(PKGDIR); \ perl -ne '$$p++ if /^### JavaScript/; print if (!$$p)' Makefile > $(PKGDIR)/Makefile; \ cp man/man1/cmark.1 $(PKGDIR)/man/man1/; \ cp README.md LICENSE spec.txt runtests.pl $(PKGDIR)/; \ - tar cvzf cmark-$(SPECVERSION).tar.gz $(PKGDIR) + tar czf cmark-$(SPECVERSION).tar.gz $(PKGDIR); \ + rm -rf $(PKGDIR) clean: rm -rf $(BUILDDIR) -- cgit v1.2.3