blob: 12ac4d8ea161e60f154beac92711d42ae97512cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#******************** makefile for boot *****************************
msg =..\messages
dos =..\dos
inc =..\inc
hinc =..\h
#
#################### dependencies begin here ############################
#
all: msboot.bin
boot.cl1: boot.skl \
$(msg)\$(COUNTRY).MSG \
makefile
msboot.obj: msboot.asm boot.cl1
msboot.bin: msboot.obj
link msboot;
exe2bin msboot.exe msboot.bin
dbof msboot.bin boot.inc 7c00 200
copy boot.inc $(inc)
del boot.inc
|