buildoak.bat
来自「Dos6.0」· Batch 代码 · 共 40 行
BAT
40 行
@echo off
if "%1"=="" goto syntax
if "%2"=="" goto syntax
if "%3"=="" goto syntax
set oaktype=FULL
set OAKDIR=%1
set LR=%2
set COUNTRY=%3
nmake -f build.oak %oaktype%
set OAKDIR=
set COUNTRY=
set LR=
goto done
:syntax
echo.
echo SYNTAX: BUILDOAK [oak-dir] [lang-root] [country]
echo [oak-dir] - Directory to build OAK in.
echo [lang-root] - Root of language directory (ie. "LANG", "C:\INTL\LANG").
echo [country] - Language to build (USA, FRN, GER, SPA, etc).
echo.
echo This batch file builds the MS-DOS 6 OEMFULL OAK tree from the normal
echo DOS6 source tree.
echo.
echo WARNING: You must run this batch file from the root (MSDOS60) directory
echo of the source tree.
echo You must also have built the project first, as the OAK uses built OBJ's
echo and LIB's from the tree.
echo.
:done
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?