prjclean.bat

来自「flashfx pro for vxworks based arm9260」· Batch 代码 · 共 42 行

BAT
42
字号
@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

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?