Added methods to Makefile for 7z and tar.gz package building.

This commit is contained in:
Johannes Findeisen 2022-07-18 14:07:52 +02:00
commit 37d67be954
2 changed files with 18 additions and 0 deletions

2
.gitignore vendored
View file

@ -1,6 +1,8 @@
uplink.bin
uplink.build
uplink.dist
*.7z
*.tar.gz
.idea
.run
__pycache__

View file

@ -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