diff --git a/makefile b/makefile new file mode 100644 index 0000000..4761dc4 --- /dev/null +++ b/makefile @@ -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 \ No newline at end of file