9 lines
154 B
Makefile
9 lines
154 B
Makefile
build-macos: clean
|
|
pip install -r requirements.txt
|
|
pip install pyinstaller
|
|
pip install Pillow
|
|
pyinstaller gotify-tray.spec
|
|
|
|
clean:
|
|
rm -rf dist build
|