1 | # $Id: Config.kmk 63376 2016-08-12 17:28:38Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # kBuild Configuration file for the Devices.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2016 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 | VBOX_PATH_DEVICES_SRC := $(PATH_ROOT)/src/VBox/Devices
|
---|
26 |
|
---|
27 | #
|
---|
28 | # VBoxBios - Template for building 16-bit BIOS code.
|
---|
29 | #
|
---|
30 | # Disabled linker warnings:
|
---|
31 | # W1014: ?
|
---|
32 | # W1023: ?
|
---|
33 | # W2120: ?
|
---|
34 | # W1080: file F:\tinderbox\win-rel\out\win.amd64\release\obj\VBoxVgaBios386\vberom.obj is a 32-bit object file
|
---|
35 | TEMPLATE_VBoxBios = ROM
|
---|
36 | TEMPLATE_VBoxBios_INSTTYPE = none
|
---|
37 | TEMPLATE_VBoxBios_TOOL = OPENWATCOM-16
|
---|
38 | TEMPLATE_VBoxBios_LDTOOL = OPENWATCOM-WL
|
---|
39 | TEMPLATE_VBoxBios_ASTOOL = OPENWATCOM-16
|
---|
40 | TEMPLATE_VBoxBios_BLD_TRG = os-agnostic
|
---|
41 | TEMPLATE_VBoxBios_BLD_TRG_ARCH = x86
|
---|
42 | TEMPLATE_VBoxBios_BINSUFF = .rom
|
---|
43 | TEMPLATE_VBoxBios_INCS = . $(VBOX_PATH_DEVICES_SRC)/BiosCommonCode
|
---|
44 | TEMPLATE_VBoxBios_ASFLAGS = -q -wx -d1 -0
|
---|
45 | TEMPLATE_VBoxBios_CFLAGS = -q -0 -wx -zl -zu -s -oafs -ms -hc -d1+
|
---|
46 | TEMPLATE_VBoxBios_CXXFLAGS = $(TEMPLATE_VBoxBios_CFLAGS)
|
---|
47 | TEMPLATE_VBoxBios_DEPS = $(VBOX_VERSION_HEADER)
|
---|
48 | TEMPLATE_VBoxBios_LDFLAGS = system dos \
|
---|
49 | debug codeview all \
|
---|
50 | option quiet, nofarcalls, map, verbose, statics, symfile \
|
---|
51 | disable 1014, 1023, 2120, 1080
|
---|
52 | TEMPLATE_VBoxBios_LNK_DEPS = $(VBOX_BIOSSUMS) $(VBOX_PATH_DEVICES_SRC)/BiosCommonCode/biosorg_check.sed
|
---|
53 | TEMPLATE_VBoxBios_POST_CMDS = \
|
---|
54 | $(QUIET)$(SED_EXT) -n -f $(VBOX_PATH_DEVICES_SRC)/BiosCommonCode/biosorg_check.sed $(outbase).map \
|
---|
55 | && $(MV_EXT) -f $(out) $(out).tmp \
|
---|
56 | && $(VBOX_BIOSSUMS) $(out).tmp $(out) \
|
---|
57 | && $(RM_EXT) -f $(out).tmp \
|
---|
58 |
|
---|
59 | #
|
---|
60 | # VBoxBios - Template for building 32-bit BIOS code.
|
---|
61 | #
|
---|
62 | TEMPLATE_VBoxBios32Lib = ROM
|
---|
63 | TEMPLATE_VBoxBios32Lib_EXTENDS = VBoxBios
|
---|
64 | TEMPLATE_VBoxBios32Lib_INSTTYPE = none
|
---|
65 | TEMPLATE_VBoxBios32Lib_TOOL = OPENWATCOM
|
---|
66 | TEMPLATE_VBoxBios32Lib_ASTOOL = OPENWATCOM
|
---|
67 | TEMPLATE_VBoxBios32Lib_CFLAGS = -q -wx -zu -s -oas -ms -nt=BIOS32 -nd=BIOS32 -hc
|
---|
68 | ifeq ($(KBUILD_TARGET),darwin) # The Open Watcom version we use on darwin generate trouble for the link in -d1+ mode; -d2 doesn't work anywhere.
|
---|
69 | TEMPLATE_VBoxBios32Lib_CFLAGS += -d1
|
---|
70 | else
|
---|
71 | TEMPLATE_VBoxBios32Lib_CFLAGS += -d1+
|
---|
72 | endif
|
---|
73 | TEMPLATE_VBoxBios32Lib_CXXFLAGS = $(TEMPLATE_VBoxBios32_CFLAGS)
|
---|
74 | TEMPLATE_VBoxBios32Lib_LNK_DEPS = $(NO_SUCH_VARIABLE)
|
---|
75 | TEMPLATE_VBoxBios32Lib_POST_CMDS = $(NO_SUCH_VARIABLE)
|
---|
76 |
|
---|