source: trunk/MAKEFILE@ 30

Last change on this file since 30 was 30, checked in by Ben Rietbroek, 15 years ago

AiR-BOOT v1.07 -- As released with eCS v2.1. [2011-05-06]
Signature-date: 2006-03-13. (incorrect)
Trunk contains buildable v1.07 version as distributed with eCS v2.1.
Directory 'tags' contains v1.06 & v1.07 reference versions
built for all languages. Note that language ID for 'Dutch' changed
from 'DT' to 'NL' in v1.07 and that the v1.06 reference version also
uses 'NL' for 'Dutch'.
Also note that helper programs like the installer and setaboot are
are only modified for the OS/2 versions in v1.07.
The signature-date for v1.07 incorrectly states the same
date as for v1.06. The signature-version is correct.
Removed other binaries. (cd-rom images, old releases, etc.)
The tags serve as reference versions:

  • v1.06: rebuilt from source. (tags/v1.06r)
  • v1.07: built as released with eCS v2.1. (tags/v1.07r)
File size: 1.1 KB
Line 
1#
2# MAKEFILE -- Wrapper around the DOS .BAT files.
3#
4
5#
6# Used tools:
7# Open Watcom v1.9
8# Tasm v4.1 DOS (136018 bytes)
9# Tlink v4.0 DOS (72585 bytes)
10# Caldera EXE2BIN.EXE R1.01 (9845 bytes)
11#
12
13
14#
15# Build the loader code, the installers and SETABOOT.
16#
17# The default language for the loader code is EN.
18# To build another language, edit BOOTCODE\_build.cmd and change the lang variable.
19# Supported languages are: EN,DE,FR,SW,IT,NL,RU.
20# To build all languages, edit BOOTCODE\_build.cmd and set the lang variable to 'ALL'.
21# The 1.06 version used 'DT' for the Dutch language, this has been changed to 'NL'.
22#
23all: .SYMBOLIC
24# AiR-BOOT loader code
25 cd BOOTCODE
26 call _clean.cmd
27 call _build.cmd
28 @cd ..
29 @echo.
30 @echo Gonna build the installer and setaboot now...
31 @echo.
32 @pause
33
34# OS2 and WIN32 installer
35 cd INSTALL\C
36 call _clean.cmd
37 call _build.cmd
38 cd ..\..
39
40# OS2 SETABOOT
41 cd TOOLS\OS2\SETABOOT
42 call _clean.cmd
43 call _build.cmd
44 cd ..\..\..
45
46#
47# Cleanup.
48#
49clean: .SYMBOLIC
50 cd BOOTCODE
51 call _clean.cmd
52 cd ..
53
54 cd INSTALL\C
55 call _clean.cmd
56 cd ..\..
57
58 cd TOOLS\OS2\SETABOOT
59 call _clean.cmd
60 cd ..\..\..
Note: See TracBrowser for help on using the repository browser.