mirror of
https://github.com/cs01/gdbgui
synced 2024-11-17 07:48:57 +01:00
9 lines
200 B
Makefile
9 lines
200 B
Makefile
# run pip install -r dev_requirements.txt before running make test
|
|
.PHONY: test publish
|
|
test:
|
|
python setup.py test
|
|
yarn build
|
|
python setup.py checkdocs
|
|
|
|
publish: test
|
|
python setup.py sdist upload
|