]>
Commit | Line | Data |
---|---|---|
14c7c974 A |
1 | # makefile for use under DOS |
2 | # to use this file: "make -fmakefile.dos" | |
3 | ||
4 | all: boot1 boot1f | |
5 | ||
6 | boot1: boot1.asm | |
7 | tasm /m3 /dBOOTDEV=HDISK boot1\r | |
8 | tlink boot1\r | |
9 | exe2bin boot1\r | |
10 | del boot1 \r | |
11 | del boot1.obj \r | |
12 | del boot1.map\r | |
13 | del boot1.exe | |
14 | ren boot1.bin boot1\r | |
15 | ||
16 | boot1f: boot1.asm | |
17 | tasm /m3 /dBOOTDEV=FLOPPY boot1 ,boot1f\r | |
18 | tlink boot1f\r | |
19 | exe2bin boot1f\r | |
20 | del boot1f \r | |
21 | del boot1f.obj \r | |
22 | del boot1f.map\r | |
23 | del boot1f.exe | |
24 | ren boot1f.bin boot1f\r | |
25 | \r |