]> git.saurik.com Git - apple/boot.git/blame - i386/boot1/makefile.dos
boot-111.1.tar.gz
[apple/boot.git] / i386 / boot1 / makefile.dos
CommitLineData
14c7c974
A
1# makefile for use under DOS
2# to use this file: "make -fmakefile.dos"
3
4all: boot1 boot1f
5
6boot1: 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
16boot1f: 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