Added methods to Makefile for 7z and tar.gz package building.
This commit is contained in:
parent
2d3bb36a75
commit
37d67be954
2 changed files with 18 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,6 +1,8 @@
|
||||||
uplink.bin
|
uplink.bin
|
||||||
uplink.build
|
uplink.build
|
||||||
uplink.dist
|
uplink.dist
|
||||||
|
*.7z
|
||||||
|
*.tar.gz
|
||||||
.idea
|
.idea
|
||||||
.run
|
.run
|
||||||
__pycache__
|
__pycache__
|
||||||
|
|
|
||||||
16
Makefile
16
Makefile
|
|
@ -18,3 +18,19 @@ run:
|
||||||
runbin:
|
runbin:
|
||||||
./uplink.dist/uplink ./config.json -fsv
|
./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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue