1 | # $Id: Makefile.kmk 12446 2008-09-14 23:32:31Z 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 |
|
---|
22 | SUB_DEPTH = ../../../../..
|
---|
23 | include $(KBUILD_PATH)/subheader.kmk
|
---|
24 |
|
---|
25 | #
|
---|
26 | # VBoxGuest
|
---|
27 | #
|
---|
28 | SYSMODS += VBoxGuest
|
---|
29 | VBoxGuest_TEMPLATE = VBOXGUESTR0
|
---|
30 | ifdef VBOX_SIGN_ADDITIONS # (See the parent makefile.)
|
---|
31 | VBoxGuest_NOINST = true
|
---|
32 | endif
|
---|
33 | VBoxGuest_DEFS = LOG_TO_BACKDOOR VBGL_VBOXGUEST VBOX_WITH_HGCM VBOX_REBOOT_ON_UNINSTALL
|
---|
34 | #VBoxGuest_DEFS += LOG_ENABLED
|
---|
35 | VBoxGuest_INCS = ../include
|
---|
36 | VBoxGuest_LDFLAGS.x86 = -Entry:DriverEntry@8
|
---|
37 | VBoxGuest_LDFLAGS.amd64 = -Entry:DriverEntry
|
---|
38 | VBoxGuest_SOURCES = \
|
---|
39 | VBoxGuest.cpp \
|
---|
40 | VBoxGuestPnP.cpp \
|
---|
41 | Helper.cpp \
|
---|
42 | VBoxGuest.rc
|
---|
43 | VBoxGuest_LIBS = \
|
---|
44 | $(PATH_SDK_W2K3DDK_LIB)/ntoskrnl.lib \
|
---|
45 | $(PATH_SDK_W2K3DDK_LIB)/hal.lib \
|
---|
46 | $(VBOX_LIB_VBGL_R0BASE) \
|
---|
47 | $(VBOX_LIB_IPRT_GUEST_R0)
|
---|
48 |
|
---|
49 |
|
---|
50 | #
|
---|
51 | # VBoxGuestNT - NT version of the driver (x86 only).
|
---|
52 | #
|
---|
53 | SYSMODS.x86 += VBoxGuestNT
|
---|
54 | $(warning Try out VBoxGuestNT_EXTENDS again!)
|
---|
55 | ## @todo check this out!!!
|
---|
56 | ifeq (kBuild,0.1.4) # This doesn't work because of the VBoxGuest_NOINST stuff above. ## @todo kBuild: change the NOINST test from ifdef to ifneq ($(strip $($(target)_NOINST)),)
|
---|
57 | VBoxGuestNT_EXTENDS = VBoxGuest
|
---|
58 | else
|
---|
59 | VBoxGuestNT_TEMPLATE = VBOXGUESTR0
|
---|
60 | VBoxGuestNT_INCS = $(VBoxGuest_INCS)
|
---|
61 | VBoxGuestNT_LDFLAGS.x86 = $(VBoxGuest_LDFLAGS.x86)
|
---|
62 | endif
|
---|
63 | VBoxGuestNT_DEFS = $(VBoxGuest_DEFS) TARGET_NT4
|
---|
64 | VBoxGuestNT_SOURCES = \
|
---|
65 | VBoxGuest.cpp \
|
---|
66 | Helper.cpp \
|
---|
67 | NTLegacy.cpp \
|
---|
68 | VBoxGuest.rc
|
---|
69 | VBoxGuestNT_LIBS = \
|
---|
70 | $(PATH_SDK_W2K3DDK_LIB)/exsup.lib \
|
---|
71 | $(PATH_SDK_W2K3DDK_LIB)/ntoskrnl.lib \
|
---|
72 | $(PATH_SDK_W2K3DDK_LIB)/hal.lib \
|
---|
73 | $(VBOX_LIB_VBGL_R0BASE) \
|
---|
74 | $(VBOX_LIB_IPRT_GUEST_R0_NT4)
|
---|
75 |
|
---|
76 | #
|
---|
77 | # VBoxGuestInst - The installer.
|
---|
78 | #
|
---|
79 | #PROGRAMS += VBoxGuestInst
|
---|
80 | VBoxGuestInst_TEMPLATE= VBOXGUESTR3EXE
|
---|
81 | VBoxGuestInst_SOURCES = VBoxGuestInst.cpp
|
---|
82 |
|
---|
83 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
84 |
|
---|