Modular clean targets

This commit is contained in:
Valentin Samir 2015-12-18 11:35:18 +01:00
parent f0ecd653d3
commit d213a496a3
1 changed files with 8 additions and 4 deletions

View File

@ -7,13 +7,17 @@ build:
install:
python setup.py install
clean:
clean_pyc:
find ./ -name '*.pyc' -delete
find ./ -name __pycache__ -delete
clean_build:
rm -rf build django_cas_server.egg-info dist
clean_all: clean
rm -rf test_venv .tox
clean_tox:
rm -rf .tox
clean_test_venv:
rm -rf test_venv
clean: clean_pyc clean_build
clean_all: clean_pyc clean_build clean_tox clean_test_venv
dist:
python setup.py sdist