slight makefile clean

This commit is contained in:
Casper da Costa-Luis 2024-02-10 17:51:47 +00:00
parent 5306125133
commit 7323d5bcc9
No known key found for this signature in database
GPG Key ID: F5126E5FBD2512AD
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ Exceptions or notable authors are listed below
in reverse chronological order:
* files: *
MPL-2.0 2015-2023 (c) Casper da Costa-Luis
MPL-2.0 2015-2024 (c) Casper da Costa-Luis
[casperdcl](https://github.com/casperdcl).
* files: tqdm/_tqdm.py
MIT 2016 (c) [PR #96] on behalf of Google Inc.

View File

@ -137,9 +137,9 @@ 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('tests/*.py[co]')]"
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('benchmarks/*.py[co]')]"
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('examples/*.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/examples/*.py[co]')]"
toxclean:
@+python -c "import shutil; shutil.rmtree('.tox', True)"