prjbuild.bat

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

BAT
37
字号
@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 MAKEALL.BAT.
REM ----------------------------------------------------------------------

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\makeall.bat goto NoProd

call %P_DCLROOT%\host\win32\bin\makeall.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
goto Fini

:NoProj
echo PRJBUILD: PRJINFO.BAT not found
goto Fini

:NoDCL
echo PRJBUILD: The P_DCLROOT value is not set
goto Fini

:NoProd
echo PRJBUILD: "%P_DCLROOT%\host\win32\bin\makeall.bat" not found
goto Fini

:Fini

⌨️ 快捷键说明

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