2022-07-18 13:41:35 +02:00
|
|
|
binary:
|
|
|
|
|
bash -c "time nuitka3 uplink"
|
|
|
|
|
|
|
|
|
|
fullbinary:
|
|
|
|
|
bash -c "time nuitka3 --follow-imports uplink"
|
|
|
|
|
|
|
|
|
|
standalone:
|
|
|
|
|
bash -c "time nuitka3 --follow-imports --standalone uplink"
|
|
|
|
|
|
|
|
|
|
clean:
|
|
|
|
|
rm -rf uplink.build/*
|
|
|
|
|
rm -rf uplink.dist/*
|
|
|
|
|
rm -rf uplink.bin
|
2022-07-18 14:09:55 +02:00
|
|
|
rm -rf uplink-bin.tar.gz
|
|
|
|
|
rm -rf uplink-bin.7z
|
2022-07-18 14:11:06 +02:00
|
|
|
|
2022-07-18 13:45:39 +02:00
|
|
|
run:
|
|
|
|
|
./uplink ./config.json -fsv
|
|
|
|
|
|
|
|
|
|
runbin:
|
|
|
|
|
./uplink.dist/uplink ./config.json -fsv
|
|
|
|
|
|
2022-07-18 14:07:52 +02:00
|
|
|
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
|
|
|
|
|
|