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
16
Makefile
16
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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue