?? prjclean.bat
字號(hào):
@if "%ECHO%" == "" set ECHO=off
@echo %ECHO%
REM ----------------------------------------------------------------------
REM NOTE: This batch file should contain the bare minimum level of
REM functionality necessary to transfer control to CLEAN.BAT.
REM ----------------------------------------------------------------------
echo.
echo Cleaning the product tree... One moment please...
echo.
if not exist prjinfo.bat goto NoProj
call prjinfo.bat
REM Use the DCL that is part of the product, if it exists
if exist %P_ROOT%\dcl\product\*.* set P_DCLROOT=%P_ROOT%\dcl
REM If it doesn't exist in the product, it must be specified elsewhere
if "%P_DCLROOT%" == "" goto NoDCL
if not exist %P_DCLROOT%\host\win32\bin\clean.bat goto NoProd
call %P_DCLROOT%\host\win32\bin\clean.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
goto Fini
:NoProj
echo PRJCLEAN: PRJINFO.BAT not found
goto Fini
:NoDCL
echo PRJCLEAN: The P_DCLROOT value is not set
goto Fini
:NoProd
echo PRJCLEAN: "%P_DCLROOT%\host\win32\bin\clean.bat" not found
goto Fini
:Fini
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -