-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathbuildoak.bat
More file actions
40 lines (30 loc) · 854 Bytes
/
Copy pathbuildoak.bat
File metadata and controls
40 lines (30 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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