You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
243 B
15 lines
243 B
|
4 years ago
|
.PHONY: nuitka clean env
|
||
|
|
|
||
|
|
#export CCFLAGS += -O1
|
||
|
|
#export CXXFLAGS += -O1
|
||
|
|
|
||
|
|
nuitka:
|
||
|
|
poetry run python -m nuitka --standalone --onefile --enable-plugin=pyqt5 --output-dir=build/nuitka timebot/app.py
|
||
|
|
|
||
|
|
env:
|
||
|
|
env
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -rf dist
|
||
|
|
rm -rf build
|