source: trunk/tools/dos/inithdd/make.bat@ 57

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: 500 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
12@ren inithdd.LST inithdd.TSL
13@ren inithdd.TSL INITHDD.LST
14
15rem Cleanup
16del inithdd.com
17del inithdd.exe
18del inithdd.obj
19goto ExitMe
20
21:Failed
22echo Errorlevel not 0, make failed
23:ExitMe
24rem pause
Note: See TracBrowser for help on using the repository browser.