]> git.saurik.com Git - apple/boot.git/blob - i386/boot1/makefile.dos
0d7e098254eadfc6232deb9ed8bdcea351140abf
[apple/boot.git] / i386 / boot1 / makefile.dos
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
8 tlink boot1
9 exe2bin boot1
10 del boot1
11 del boot1.obj
12 del boot1.map
13 del boot1.exe
14 ren boot1.bin boot1
15
16 boot1f: boot1.asm
17 tasm /m3 /dBOOTDEV=FLOPPY boot1 ,boot1f
18 tlink boot1f
19 exe2bin boot1f
20 del boot1f
21 del boot1f.obj
22 del boot1f.map
23 del boot1f.exe
24 ren boot1f.bin boot1f
25