mirror of https://github.com/tqdm/tqdm.git
add missing contrib module to Makefile
This commit is contained in:
parent
078980c10d
commit
cf74393cd3
2
Makefile
2
Makefile
|
@ -118,10 +118,12 @@ prebuildclean:
|
|||
coverclean:
|
||||
@+python -c "import os; os.remove('.coverage') if os.path.exists('.coverage') else None"
|
||||
@+python -c "import shutil; shutil.rmtree('tqdm/__pycache__', True)"
|
||||
@+python -c "import shutil; shutil.rmtree('tqdm/contrib/__pycache__', True)"
|
||||
@+python -c "import shutil; shutil.rmtree('tqdm/tests/__pycache__', True)"
|
||||
clean:
|
||||
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('*.py[co]')]"
|
||||
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('tqdm/*.py[co]')]"
|
||||
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('tqdm/contrib/*.py[co]')]"
|
||||
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('tqdm/tests/*.py[co]')]"
|
||||
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('tqdm/examples/*.py[co]')]"
|
||||
toxclean:
|
||||
|
|
Loading…
Reference in New Issue