Add makefile.

This commit is contained in:
2024-11-15 15:11:07 -07:00
parent 8746f2151e
commit 1219c2f974
+21
View File
@@ -0,0 +1,21 @@
venv:
python3 -m venv venv
source venv/bin/activate
./venv/bin/pip install -r requirements.txt
cli:
./venv/bin/python3 solderPacker.py
gui:
./venv/bin/python3 solderPackerGUI.py
build-cli:
source venv/bin/activate && pyinstaller --onefile --icon=wrenchIcon.ico solderPacker.py
build-gui:
source venv/bin/activate && pyinstaller --windowed --onefile --icon=wrenchIcon.ico solderPackerGUI.py
clean:
- rm -r venv
- rm -r dist
- rm -r build