From 37d67be954f507683236d330f3aaea51f06a0857 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Mon, 18 Jul 2022 14:07:52 +0200 Subject: [PATCH] Added methods to Makefile for 7z and tar.gz package building. --- .gitignore | 2 ++ Makefile | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/.gitignore b/.gitignore index 215adc6..422afb6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ uplink.bin uplink.build uplink.dist +*.7z +*.tar.gz .idea .run __pycache__ diff --git a/Makefile b/Makefile index c32f687..327eab4 100644 --- a/Makefile +++ b/Makefile @@ -18,3 +18,19 @@ run: runbin: ./uplink.dist/uplink ./config.json -fsv +targz: + rm -rf uplink-bin.tar.gz + tar -czf uplink-bin.tar.gz uplink.dist/* + +7z: + rm -rf uplink-bin.7z + 7z a uplink-bin.7z uplink.dist/* + +all: + make clean + make binary + make fullbinary + make standalone + make targz + make 7z +