buildoak.bat
资源名称:DOS系统的源代码.rar [点击查看]
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:
操作系统开发
开发平台:
Visual C++
- @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:INTLLANG").
- 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