make clean - more files

Remove setup.py genereated directories and potential python stubs.
This commit is contained in:
Tomas Kopecek 2024-06-03 10:04:07 +02:00
parent 90b3ef7366
commit f82359b920

View file

@ -71,6 +71,9 @@ clean:
rm -rf __pycache__
rm -rf devtools/fakehubc devtools/fakewebc devtools/__pycache__
rm -rf koji-$(VERSION)
rm -rf build dist koji.egg-info
find -name '*.pyi' -delete
find -name py.typed -delete
for d in $(SUBDIRS); do make -s -C $$d clean; done
find ./tests -name "__pycache__" -exec rm -rf {} \; ||:
find ./tests -name "*.pyc" -exec rm -f {} \;