Added Makefile for building a binary using Nuitka
This commit is contained in:
parent
452b57c45b
commit
bb25c96291
2 changed files with 15 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,5 +1,6 @@
|
||||||
uplink.bin
|
uplink.bin
|
||||||
uplink.build
|
uplink.build
|
||||||
|
uplink.dist
|
||||||
.idea
|
.idea
|
||||||
.run
|
.run
|
||||||
__pycache__
|
__pycache__
|
||||||
|
|
|
||||||
14
Makefile
Normal file
14
Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
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
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue