Added tar.xz method to Makefile.

This commit is contained in:
Johannes Findeisen 2022-07-18 15:36:20 +02:00
commit 42f3e557be
2 changed files with 8 additions and 3 deletions

1
.gitignore vendored
View file

@ -3,6 +3,7 @@ uplink.build
uplink.dist
*.7z
*.tar.gz
*.tar.xz
.idea
.run
__pycache__

View file

@ -22,11 +22,15 @@ runbin:
targz:
rm -rf uplink-bin.tar.gz
tar -czf uplink-bin.tar.gz uplink.dist/*
tar -czf uplink-bin.tar.gz uplink.dist
tarxz:
rm -rf uplink-bin.tar.xz
tar -cJf uplink-bin.tar.xz uplink.dist
7z:
rm -rf uplink-bin.7z
7z a uplink-bin.7z uplink.dist/*
rm -rf uplink-bin.tar.xz
7z a uplink-bin.tar.7z uplink.dist
all:
make clean