summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-11-16 15:49:45 (EST)
committer P. J. McDermott <pjm@nac.net>2012-11-16 15:49:45 (EST)
commit32b5e269dda5dad2fde6b6cb7c693f1a67529894 (patch)
tree21c0499bfdf76b380d6f65c8e9be8dfcd9f2ea5f
parentbf055e80a6a28f6477fb8ce304a39d46af8c1a5f (diff)
Add a "dist-xz" makefile target.
-rw-r--r--Makefile.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index ab1ddb6..c699c11 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -111,3 +111,7 @@ dist dist-gzip: $(distdir)
dist-bzip2: $(distdir)
@tar -cf - '$(distdir)' | bzip2 -9c > '$(distdir).tar.bz2'
@rm -Rf '$(distdir)'
+
+dist-xz: $(distdir)
+ @tar -cf - '$(distdir)' | xz -c > '$(distdir).tar.xz'
+ @rm -Rf '$(distdir)'