source: trunk/TOOLS/DOS/INITHDD/MAKE.BAT@ 34

Last change on this file since 34 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: 438 bytes
Line 
1@echo off
2rem Do actual build...
3call ..\..\..\env\dos.bat
4%assembler% inithdd.asm
5if errorlevel 1 goto Failed
6%linker% inithdd.obj >nul
7if errorlevel 1 goto Failed
8%exe2bin% inithdd.exe inithdd.com >nul
9if errorlevel 1 goto Failed
10copy inithdd.com ..\..\..\RELEASE\DOS\inithdd.com
11
12rem Cleanup
13del inithdd.com
14del inithdd.exe
15del inithdd.obj
16goto ExitMe
17
18:Failed
19echo Errorlevel not 0, make failed
20:ExitMe
21rem pause
Note: See TracBrowser for help on using the repository browser.