mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
964 B
45 lines
964 B
@if (%_echo%)==() echo off
|
|
setlocal
|
|
|
|
set flavor=%1
|
|
|
|
REM
|
|
REM Remove any stray BUILD.* files.
|
|
REM
|
|
|
|
del build%flavor%.log build%flavor%.wrn build%flavor%.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
|
|
|
|
if "%flavor%" == "" goto deletetlb
|
|
(for /f %%i in ('dir obj%flavor% /ad /b /s') do (rd /s /q %%i >nul 2>&1)) >nul 2>&1
|
|
rd /s /q lib%flavor% >nul 2>&1
|
|
|
|
|
|
|
|
REM
|
|
REM Individually remove all generated files.
|
|
REM
|
|
|
|
:deletetlb
|
|
rem ... del server\seo\ddrop\ddrop.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
|