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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Compiler flags:
# -q no banner
# -wx max warnings
# -0 generate 8086 code
# -ms force small model (default)
# -s remove runtime stack checks (required)
# -os optimize for size
# -zu assume that SS != DS (required)
# -ecc default to __cdecl calling convention (bad idea)
#
Q=\"
!else
Q="
!endif
CFLAGS = -q -0 -wx -zu -s -oas -d1+ -ms
CFLAGS32 = -q -wx -zu -s -oas -d1+ -ms -nt=BIOS32 -nd=BIOS32
DEFS = -DVBOX -DVBOX_LANBOOT_SEG=0xE200 -DVBOX_VERSION_STRING=$(Q)0.9$(Q) &
-DVBOX_WITH_SCSI -DVBOX_WITH_AHCI
AFLAGS = -q -0 -wx
INCLS = -I$(Q)../../../../../include$(Q)
.c.obj : .autodepend
.asm.obj : .autodepend
OBJS = bios.obj post.obj ata.obj floppy.obj floppyt.obj eltorito.obj &
biossums $< $@
wlink name $@ system dos debug all option quiet &
option nofarcalls, map, verbose, statics, symfile &
output raw offset=0xF0000 order &
clname DATA segaddr=0xF000 segment _DATA &
clname CODE &
segment _TEXT segaddr=0xF000 offset=0x1600 &
segment BIOS32 segaddr=0xF000 offset=0xDB00 &
segment BIOSSEG segaddr=0xF000 offset=0xE000 &
library clibs.lib &
disable 1014, 1023, 2120
clean : .symbolic
@rm -f *.obj *.err