1 | # $Id: Config.kmk 42363 2012-07-24 12:59:54Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # kBuild Configuration file for the Devices.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2012 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | VBOX_DEVICES_CONFIG_KMK_INCLUDED = 1
|
---|
19 |
|
---|
20 | # Include the top-level configure file.
|
---|
21 | ifndef VBOX_ROOT_CONFIG_KMK_INCLUDED
|
---|
22 | include $(PATH_ROOT)/Config.kmk
|
---|
23 | endif
|
---|
24 |
|
---|
25 | #
|
---|
26 | # VBoxBios - Template for building 16-bit BIOS code.
|
---|
27 | #
|
---|
28 | TEMPLATE_VBoxBios = ROM
|
---|
29 | TEMPLATE_VBoxBios_INSTTYPE = none
|
---|
30 | TEMPLATE_VBoxBios_TOOL = OPENWATCOM-16
|
---|
31 | TEMPLATE_VBoxBios_LDTOOL = OPENWATCOM-WL
|
---|
32 | TEMPLATE_VBoxBios_ASTOOL = OPENWATCOM-16
|
---|
33 | TEMPLATE_VBoxBios_BLD_TRG = os-agnostic
|
---|
34 | TEMPLATE_VBoxBios_BLD_TRG_ARCH = x86
|
---|
35 | TEMPLATE_VBoxBios_BINSUFF = .rom
|
---|
36 | TEMPLATE_VBoxBios_INCS = .
|
---|
37 | TEMPLATE_VBoxBios_ASFLAGS = -q -wx ## @todo add -0?
|
---|
38 | TEMPLATE_VBoxBios_CFLAGS = -q -3 -wx -zl -zu -s -oas -d1+ -ms
|
---|
39 | TEMPLATE_VBoxBios_CXXFLAGS = $(TEMPLATE_VBoxBios_CFLAGS)
|
---|
40 | TEMPLATE_VBoxBios_DEPS = $(VBOX_VERSION_HEADER)
|
---|
41 | TEMPLATE_VBoxBios_LDFLAGS = system dos \
|
---|
42 | debug all \
|
---|
43 | option quiet, nofarcalls, map, verbose, statics, symfile \
|
---|
44 | disable 1014, 1023, 2120
|
---|
45 | TEMPLATE_VBoxBios_LNK_DEPS = $(VBOX_BIOSSUMS)
|
---|
46 | TEMPLATE_VBoxBios_POST_CMDS = \
|
---|
47 | $(QUIET)$(MV_EXT) -f $(out) $(out).tmp \
|
---|
48 | && $(VBOX_BIOSSUMS) $(out).tmp $(out) \
|
---|
49 | && $(RM_EXT) -f $(out).tmp
|
---|
50 |
|
---|
51 | #
|
---|
52 | # VBoxBios - Template for building 32-bit BIOS code.
|
---|
53 | #
|
---|
54 | TEMPLATE_VBoxBios32Lib = ROM
|
---|
55 | TEMPLATE_VBoxBios32Lib_EXTENDS = VBoxBios
|
---|
56 | TEMPLATE_VBoxBios32Lib_INSTTYPE = none
|
---|
57 | TEMPLATE_VBoxBios32Lib_TOOL = OPENWATCOM
|
---|
58 | TEMPLATE_VBoxBios32Lib_ASTOOL = OPENWATCOM
|
---|
59 | TEMPLATE_VBoxBios32Lib_CFLAGS = -q -wx -zu -s -oas -d1+ -ms -nt=BIOS32 -nd=BIOS32
|
---|
60 | TEMPLATE_VBoxBios32Lib_CXXFLAGS = $(TEMPLATE_VBoxBios32_CFLAGS)
|
---|
61 | TEMPLATE_VBoxBios32Lib_LNK_DEPS = $(NO_SUCH_VARIABLE)
|
---|
62 | TEMPLATE_VBoxBios32Lib_POST_CMDS = $(NO_SUCH_VARIABLE)
|
---|
63 |
|
---|