VirtualBox

source: vbox/trunk/src/VBox/Devices/PC/BIOS/makefile

Last change on this file was 78572, checked in by vboxsync, 5 years ago

Undoing bad commit.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1# Compiler flags:
2# -q no banner
3# -wx max warnings
4# -0 generate 8086 code
5# -ms force small model (default)
6# -s remove runtime stack checks (required)
7# -os optimize for size
8# -zu assume that SS != DS (required)
9# -ecc default to __cdecl calling convention (bad idea)
10#
11!ifdef __UNIX__
12Q=\"
13!else
14Q="
15!endif
16
17CPU = 386
18
19CFLAGS = -q -0 -wx -zu -s -oas -d1+ -ms
20CFLAGS32 = -q -wx -zu -s -oas -d1+ -ms -nt=BIOS32 -nd=BIOS32
21# -oat seems to prevent ENTER/LEAVE generation
22#CFLAGS32 = -q -wx -zu -s -oat -d1+ -ms -nt=BIOS32 -nd=BIOS32
23
24DEFS = -DVBOX -DVBOX_LANBOOT_SEG=0xE200 -DVBOX_VERSION_STRING=$(Q)0.9$(Q) &
25 -DVBOX_WITH_SCSI -DVBOX_BIOS_CPU=80386
26
27AFLAGS = -q -0 -wx
28
29INCLS = -I$(Q)../../../../../include$(Q) -I$(Q) ../../BiosCommonCode$(Q)
30
31OBJS = bios.obj post.obj ata.obj floppy.obj floppyt.obj eltorito.obj &
32 boot.obj keyboard.obj disk.obj serial.obj system.obj invop.obj &
33 timepci.obj logo.obj ps2mouse.obj parallel.obj scsi.obj &
34 apm.obj apm_pm.obj pcibios.obj pciutil.obj vds.obj &
35 print.obj pcibio32.obj pci32.obj orgs.obj
36
37!if $(CPU) > 286
38OBJS += ahci.obj
39DEFS += -DVBOX_WITH_AHCI
40!endif
41
42.c.obj : .autodepend
43 wcc -fo=.obj $(CFLAGS) $(DEFS) $(INCLS) $<
44
45.asm.obj : .autodepend
46 wasm -fo=.obj $(AFLAGS) $(DEFS) $(INCLS) $<
47
48vbxbios.rom : vbxbios.bin
49 biossums $< $@
50
51vbxbios.bin : $(OBJS) $(__MAKEFILES__)
52 wlink name $@ system dos debug all option quiet &
53 option nofarcalls, map, verbose, statics, symfile &
54 output raw offset=0xF0000 order &
55 clname DATA segaddr=0xF000 segment _DATA &
56 clname CODE &
57 segment _TEXT segaddr=0xF000 offset=0x1C00 &
58 segment BIOS32 segaddr=0xF000 offset=0xDB00 &
59 segment BIOSSEG segaddr=0xF000 offset=0xE000 &
60 file { $(OBJS) } &
61 library clibs.lib &
62 disable 1014, 1023, 2120
63
64logo.obj : logo.c .autodepend
65 wcc -fo=.obj $(INCLS) $(CFLAGS) $(DEFS) -DVBOX_PC_BIOS $<
66
67pci32.obj : pci32.c .autodepend
68 wcc386 -fo=.obj $(INCLS) $(DEFS) $(CFLAGS32) $<
69
70clean : .symbolic
71 @rm -f *.obj *.err
72 @rm -f vbxbios.bin vbxbios.rom vbxbios.map vbxbios.sym
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use