📄 prjbuild.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 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -