Browse Source

Fix for make clean on certain systems.

Fix "make clean" on strict POSIX systems that do not have the rm -v
switch.

Redo of #291 which was submitted against master, rather than
development.
chaigler 9 years ago
parent
commit
f6fe1d65f9
1 changed files with 3 additions and 3 deletions
  1. 3 3
      engine/compilers/Make/Makefile

+ 3 - 3
engine/compilers/Make/Makefile

@@ -9,9 +9,9 @@ APP_TARGETS_DEBUG :=
 all: debug release
 all: debug release
 
 
 clean:
 clean:
-	rm -rfv Debug
-	rm -rfv Release
-	rm -rfv lib
+	rm -rf Debug
+	rm -rf Release
+	rm -rf lib
 
 
 .PHONY: all debug release clean
 .PHONY: all debug release clean