novajoin/Makefile
Rob Crittenden a1c94a1b90 Drop lint and pep8 targets from Makefile in favor of tox
I'm keeping the Makefile only for the clean target to keep
things tidy.
2016-11-29 16:14:37 +00:00

9 lines
186 B
Makefile

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