diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 07:16:13 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 07:16:13 -0800 |
commit | 25ccf653e8be351bb2c5d89236d3e0e960ae7a45 (patch) | |
tree | bdc2d55a8153502c022c49ab35f32d38b08c6ab1 | |
parent | 85d495dbe23fc40e718167fa423559f2c9a3121c (diff) |
Improved tarball target.
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |