diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
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)' |