14 lines
210 B
Makefile
14 lines
210 B
Makefile
.PHONY: setup run test build-mac-selfcontained
|
|
|
|
setup:
|
|
./run.sh --setup-only
|
|
|
|
run:
|
|
./run.sh
|
|
|
|
test: setup
|
|
. .venv/bin/activate && pytest -q
|
|
|
|
build-mac-selfcontained:
|
|
./scripts/build_selfcontained_mac_app.sh
|