summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-12 07:16:13 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-12 07:16:13 -0800
commit25ccf653e8be351bb2c5d89236d3e0e960ae7a45 (patch)
treebdc2d55a8153502c022c49ab35f32d38b08c6ab1 /Makefile
parent85d495dbe23fc40e718167fa423559f2c9a3121c (diff)
Improved tarball target.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 880a0e6..3842941 100644
--- 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)