|
Last change
on this file since 57 was 57, checked in by Ben Rietbroek, 10 years ago |
|
All source-files lowercased [v1.1.1-testing]
Some standard files like 'COPYING', 'LICENSE', etc. have not been
converted to lower case because they are usually distributed uppercased.
|
|
File size:
443 bytes
|
| Line | |
|---|
| 1 | @echo off
|
|---|
| 2 | rem Do actual build...
|
|---|
| 3 | call ..\..\..\env\dos.bat
|
|---|
| 4 | %assembler% setaboot.asm
|
|---|
| 5 | if errorlevel 1 goto Failed
|
|---|
| 6 | %linker% setaboot.obj >nul
|
|---|
| 7 | if errorlevel 1 goto Failed
|
|---|
| 8 | %exe2bin% setaboot.exe setaboot.com >nul
|
|---|
| 9 | if errorlevel 1 goto Failed
|
|---|
| 10 | copy setaboot.com ..\..\..\RELEASE\DOS\setaboot.com
|
|---|
| 11 |
|
|---|
| 12 | rem Cleanup
|
|---|
| 13 | del setaboot.com
|
|---|
| 14 | del setaboot.exe
|
|---|
| 15 | del setaboot.obj
|
|---|
| 16 | goto ExitMe
|
|---|
| 17 |
|
|---|
| 18 | :Failed
|
|---|
| 19 | echo Errorlevel not 0, make failed
|
|---|
| 20 | :ExitMe
|
|---|
| 21 | pause
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.