|
@@ -62,15 +62,13 @@ rem del *.ico /s - some projects have own icos
|
|
rem del *.cur /s - cursors
|
|
rem del *.cur /s - cursors
|
|
rem del *.obj /s - obj models and resources for lazarus
|
|
rem del *.obj /s - obj models and resources for lazarus
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-echo delete all .svn directories with subdirectories and files
|
|
|
|
|
|
+echo delete all .svn and .git directories with subdirectories and files
|
|
for /r %1 %%R in (.svn) do if exist "%%R" (rd /s /q "%%R")
|
|
for /r %1 %%R in (.svn) do if exist "%%R" (rd /s /q "%%R")
|
|
|
|
+for /r %1 %%R in (.git) do if exist "%%R" (rd /s /q "%%R")
|
|
echo---------------------------------------------------------
|
|
echo---------------------------------------------------------
|
|
echo delete debug and Platform directories with all subdirectories and files
|
|
echo delete debug and Platform directories with all subdirectories and files
|
|
-for /r %1 %%R in (Win32) do if exist "%%R" (rd /s /q "%%R")
|
|
|
|
-for /r %1 %%R in (Win64) do if exist "%%R" (rd /s /q "%%R")
|
|
|
|
|
|
+for /r %1 %%R in (Debug) do if exist "%%R" (rd /s /q "%%R")
|
|
|
|
+for /r %1 %%R in (Release) do if exist "%%R" (rd /s /q "%%R")
|
|
for /r %1 %%R in (Debug_Build) do if exist "%%R" (rd /s /q "%%R")
|
|
for /r %1 %%R in (Debug_Build) do if exist "%%R" (rd /s /q "%%R")
|
|
for /r %1 %%R in (Release_Build) do if exist "%%R" (rd /s /q "%%R")
|
|
for /r %1 %%R in (Release_Build) do if exist "%%R" (rd /s /q "%%R")
|
|
for /r %1 %%R in (__history) do if exist "%%R" (rd /s /q "%%R")
|
|
for /r %1 %%R in (__history) do if exist "%%R" (rd /s /q "%%R")
|