⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prjclean.bat

📁 flashfx pro for vxworks based arm9260
💻 BAT
字号:
@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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -