Browse Source

Merge pull request #307 from chaigler/make_clean_fix

Make clean fix
chaigler 9 years ago
parent
commit
17f23a4ff0
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
 
 clean:
-	rm -rfv Debug
-	rm -rfv Release
-	rm -rfv lib
+	rm -rf Debug
+	rm -rf Release
+	rm -rf lib
 
 .PHONY: all debug release clean