From 197d4f7f8957f7f1227b308b965d34591e3bee96 Mon Sep 17 00:00:00 2001 From: Alexey Pelykh Date: Sun, 3 Feb 2013 12:27:30 +0200 Subject: [PATCH] Make clean target more robust Conflicts: .gitignore --- .gitignore | 1 + makefile | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 201518bb12..588446f90d 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ build bin /lib /distrib +*.pdb diff --git a/makefile b/makefile index 5877510956..6c846335fa 100755 --- a/makefile +++ b/makefile @@ -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