From 42f3e557be1014ee18a9f34a67af16bdcebf5dda Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Mon, 18 Jul 2022 15:36:20 +0200 Subject: [PATCH] Added tar.xz method to Makefile. --- .gitignore | 1 + Makefile | 10 +++++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 422afb6..c810e0e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ uplink.build uplink.dist *.7z *.tar.gz +*.tar.xz .idea .run __pycache__ diff --git a/Makefile b/Makefile index 19f45d6..7000558 100644 --- a/Makefile +++ b/Makefile @@ -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