buildoak.bat
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. @echo off
  2. if "%1"=="" goto syntax
  3. if "%2"=="" goto syntax
  4. if "%3"=="" goto syntax
  5. set oaktype=FULL
  6. set OAKDIR=%1
  7. set LR=%2
  8. set COUNTRY=%3
  9. nmake -f build.oak %oaktype%
  10. set OAKDIR=
  11. set COUNTRY=
  12. set LR=
  13. goto done
  14. :syntax
  15. echo.
  16. echo SYNTAX: BUILDOAK [oak-dir] [lang-root] [country]
  17. echo   [oak-dir]   - Directory to build OAK in.
  18. echo   [lang-root] - Root of language directory (ie. "LANG", "C:INTLLANG").
  19. echo   [country]   - Language to build (USA, FRN, GER, SPA, etc).
  20. echo.
  21. echo This batch file builds the MS-DOS 6 OEMFULL OAK tree from the normal
  22. echo DOS6 source tree.
  23. echo.
  24. echo WARNING: You must run this batch file from the root (MSDOS60) directory
  25. echo   of the source tree.
  26. echo You must also have built the project first, as the OAK uses built OBJ's
  27. echo   and LIB's from the tree.
  28. echo.
  29. :done
  30.