makefile: always cleanup build dir

This commit is contained in:
RhodeCode Admin 2023-07-26 16:14:46 +02:00
parent 257c91a1ad
commit 3082b74880

View file

@ -14,7 +14,7 @@ GRUNT=./node_binaries/grunt
clean:
make test-clean
find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
find . -type d -name "build" -prune -exec rm -rf '{}' ';'
.PHONY: test
## run test-clean and tests