37 lines
795 B
Batchfile
37 lines
795 B
Batchfile
|
@if (%_echo%)==() echo off
|
||
|
setlocal
|
||
|
|
||
|
REM
|
||
|
REM Remove any stray BUILD.* files.
|
||
|
REM
|
||
|
|
||
|
del build.log build.wrn build.err /s >nul 2>&1
|
||
|
|
||
|
REM
|
||
|
REM Remove all OBJ and LIB directories.
|
||
|
REM
|
||
|
|
||
|
(for /f %%i in ('dir obj /ad /b /s') do (rd /s /q %%i >nul 2>&1)) >nul 2>&1
|
||
|
rd /s /q lib >nul 2>&1
|
||
|
|
||
|
REM
|
||
|
REM Individually remove all generated files.
|
||
|
REM
|
||
|
|
||
|
rem del core\fixprop\src\mailmsg.tlb >nul 2>&1
|
||
|
|
||
|
|
||
|
REM
|
||
|
REM Delete the propagation directory.
|
||
|
REM
|
||
|
|
||
|
goto End
|
||
|
|
||
|
if not (%_nttree%)==() rd /s /q %_nttree%\iis >nul 2>&1
|
||
|
if not (%_nt386tree%)==() rd /s /q %_nt386tree%\iis >nul 2>&1
|
||
|
if not (%_ntalphatree%)==() rd /s /q %_ntalphatree%\iis >nul 2>&1
|
||
|
if not (%_ntia64tree%)==() rd /s /q %_ntia64tree%\iis >nul 2>&1
|
||
|
if not (%_ntaxp64tree%)==() rd /s /q %_ntaxp64tree%\iis >nul 2>&1
|
||
|
|
||
|
:End
|