Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cleanbuild.cmd - github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10d4db221ff506a7333e3fd500303050960f84d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
:: rem #######################################################################
:: rem ## Small NT script to delete all intermediate files.
:: rem ##
:: rem ## Last modified: $Date$
:: rem #######################################################################
:: rem Change to the make directory
pushd .\make
:: rem Set all files visible and read/write
attrib -r -h -s *.* /S /D
:: rem Delete solution intermediate files
del /f /q /s *.ncb
del /f /q /s *.suo
del /f /q /s *.aps
del /f /q /s *.bak
del /f /q .\common\linkcounter.exe
:: rem Delete all release subdirectories (the release of the binaries is not touched)
for /d %%i in (*) do @(
  rd /s /q ".\%%i\UnicodeRelease"
  rd /s /q ".\%%i\UnicodeDebug"
  rd /s /q ".\%%i\Release"
  rd /s /q ".\%%i\Debug"
)
:: rem Change back to the previous dir
popd
pause