Spirit/Makefile

14 lines
187 B
Makefile
Raw Normal View History

clean:
rm -fr dist/ *.egg-info/
test:
python runtests.py
sdist: test clean
python setup.py sdist
release: test clean
python setup.py sdist upload
.PHONY: clean test sdist release