Make clean target more robust

Conflicts:

	.gitignore
This commit is contained in:
Alexey Pelykh 2013-02-03 12:27:30 +02:00
parent f3c443dbfa
commit 197d4f7f89
2 changed files with 6 additions and 0 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ build
bin
/lib
/distrib
*.pdb

View File

@ -1248,6 +1248,11 @@ javadoc:
.PHONY: clean
clean:
@echo "removing $(build)"
rm -rf $(build)
.PHONY: clean-all
clean-all:
@echo "removing build"
rm -rf build