VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/VBoxGuest/Makefile.kmk@ 18019

Last change on this file since 18019 was 18019, checked in by vboxsync, 16 years ago

VBoxGuest/Windows: Added bugcheck detection + details (not enabled by default yet).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1# $Id: Makefile.kmk 18019 2009-03-17 13:08:12Z vboxsync $
2## @file
3# Sub-Makefile for VBoxGuest (Windows Guest Additions Driver).
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22SUB_DEPTH = ../../../../..
23include $(KBUILD_PATH)/subheader.kmk
24
25#
26# VBoxGuest
27#
28SYSMODS += VBoxGuest
29VBoxGuest_TEMPLATE = VBOXGUESTR0
30ifdef VBOX_SIGN_ADDITIONS # (See the parent makefile.)
31 VBoxGuest_NOINST = true
32endif
33VBoxGuest_DEFS = LOG_TO_BACKDOOR VBGL_VBOXGUEST VBOX_WITH_HGCM VBOX_REBOOT_ON_UNINSTALL
34ifdef VBOX_WITH_GUEST_BUGCHECK_DETECTION
35 VBoxGuest_DEFS += VBOX_WITH_GUEST_BUGCHECK_DETECTION
36endif
37#VBoxGuest_DEFS += LOG_ENABLED
38VBoxGuest_INCS = \
39 ../include
40VBoxGuest_LDFLAGS.x86 = -Entry:DriverEntry@8
41VBoxGuest_LDFLAGS.amd64 = -Entry:DriverEntry
42VBoxGuest_SDKS = WINDDKWLH
43VBoxGuest_SOURCES = \
44 VBoxGuest.cpp \
45 VBoxGuestPnP.cpp \
46 Helper.cpp \
47 VBoxGuest.rc
48VBoxGuest_LIBS = \
49 $(PATH_SDK_WINDDKWLH_LIB)/ntoskrnl.lib \
50 $(PATH_SDK_WINDDKWLH_LIB)/hal.lib \
51 $(VBOX_LIB_VBGL_R0BASE) \
52 $(VBOX_LIB_IPRT_GUEST_R0) \
53
54ifdef VBOX_WITH_GUEST_BUGCHECK_DETECTION
55 VBoxGuest_LIBS += \
56 $(PATH_SDK_WINDDKWLH_LIB)/ksecdd.lib \
57 $(PATH_SDK_WINDDKWLH_LIB)/BufferOverflowK.lib \
58 $(PATH_SDK_WINDDKWLH_LIB)/aux_klib.lib
59endif
60
61#
62# VBoxGuestNT - NT version of the driver (x86 only).
63#
64SYSMODS.x86 += VBoxGuestNT
65VBoxGuestNT_EXTENDS = VBoxGuest
66VBoxGuestNT_NOINST = $(NO_SUCH_VARIABLE)
67VBoxGuestNT_DEFS = $(VBoxGuest_DEFS) TARGET_NT4
68
69VBoxGuestNT_SOURCES = \
70 VBoxGuest.cpp \
71 Helper.cpp \
72 NTLegacy.cpp \
73 VBoxGuest.rc
74VBoxGuestNT_LIBS = \
75 $(PATH_SDK_W2K3DDK_LIB)/exsup.lib \
76 $(PATH_SDK_W2K3DDK_LIB)/ntoskrnl.lib \
77 $(PATH_SDK_W2K3DDK_LIB)/hal.lib \
78 $(VBOX_LIB_VBGL_R0BASE) \
79 $(VBOX_LIB_IPRT_GUEST_R0_NT4)
80
81#
82# VBoxGuestInst - The installer.
83#
84#PROGRAMS += VBoxGuestInst
85VBoxGuestInst_TEMPLATE= VBOXGUESTR3EXE
86VBoxGuestInst_SOURCES = VBoxGuestInst.cpp
87
88include $(KBUILD_PATH)/subfooter.kmk
89
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette