novajoin/Makefile

9 lines
176 B
Makefile

clean:
-rm -rf build dist MANIFEST novajoin.egg-info
-find . -name '*.py[oc]' -exec rm {} \;
.PHONY: clean
sdist: clean
python setup.py sdist --formats=gztar
.PHONY: sdist