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 +