makefile: always cleanup build dir
This commit is contained in:
parent
257c91a1ad
commit
3082b74880
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -14,7 +14,7 @@ GRUNT=./node_binaries/grunt
|
||||||
clean:
|
clean:
|
||||||
make test-clean
|
make test-clean
|
||||||
find . -type f \( -iname '*.c' -o -iname '*.pyc' -o -iname '*.so' -o -iname '*.orig' \) -exec rm '{}' ';'
|
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
|
.PHONY: test
|
||||||
## run test-clean and tests
|
## run test-clean and tests
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue