1 | # $Id: Makefile.kmk 19373 2009-05-05 13:15:43Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Windows NT++ Guest Additions.
|
---|
4 | #
|
---|
5 |
|
---|
6 | # Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
7 | #
|
---|
8 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | # available from http://www.virtualbox.org. This file is free software;
|
---|
10 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | # General Public License (GPL) as published by the Free Software
|
---|
12 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | #
|
---|
16 | # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
17 | # Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
18 | # additional information or have any questions.
|
---|
19 | #
|
---|
20 |
|
---|
21 | SUB_DEPTH = ../../../..
|
---|
22 | include $(KBUILD_PATH)/subheader.kmk
|
---|
23 |
|
---|
24 | # Include Sub-Makefiles.
|
---|
25 | include $(PATH_SUB_CURRENT)/Graphics/Makefile.kmk
|
---|
26 | include $(PATH_SUB_CURRENT)/i8042prt/Makefile.kmk
|
---|
27 | include $(PATH_SUB_CURRENT)/MouseFilter/Makefile.kmk
|
---|
28 | include $(PATH_SUB_CURRENT)/VBoxGuest/Makefile.kmk
|
---|
29 | include $(PATH_SUB_CURRENT)/VBoxTray/Makefile.kmk
|
---|
30 | include $(PATH_SUB_CURRENT)/VBoxGINA/Makefile.kmk
|
---|
31 | include $(PATH_SUB_CURRENT)/VBoxHook/Makefile.kmk
|
---|
32 | ifndef VBOX_OSE
|
---|
33 | include $(PATH_SUB_CURRENT)/Network/Makefile.kmk
|
---|
34 | endif
|
---|
35 | ifdef VBOX_WITH_WIN32_ADDITIONS_SHAREDFOLDERS
|
---|
36 | include $(PATH_SUB_CURRENT)/SharedFolders/Makefile.kmk
|
---|
37 | endif
|
---|
38 | ifneq ($(wildcard $(PATH_SUB_CURRENT)/Installer/Makefile.kmk),)
|
---|
39 | include $(PATH_SUB_CURRENT)/Installer/Makefile.kmk
|
---|
40 | endif
|
---|
41 |
|
---|
42 | #
|
---|
43 | # Inf2Cat requires all the files referenced in the .inf file
|
---|
44 | # to be present in the directory, so we have to do this from here.
|
---|
45 | #
|
---|
46 | INSTALLS += VBoxGuest-inf
|
---|
47 | VBoxGuest-inf_INST = $(INST_ADDITIONS)
|
---|
48 | VBoxGuest-inf_MODE = a+r,u+w
|
---|
49 | VBoxGuest-inf_SOURCES = \
|
---|
50 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf
|
---|
51 | ifdef VBOX_SIGN_ADDITIONS
|
---|
52 | VBoxGuest-inf_SOURCES += \
|
---|
53 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.cat \
|
---|
54 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys \
|
---|
55 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxControl.exe \
|
---|
56 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxTray.exe \
|
---|
57 | $(PATH_TARGET)/VBoxGuestCat.dir/VBCoInst.dll
|
---|
58 | endif # signing
|
---|
59 | VBoxGuest-inf_CLEAN = $(VBoxGuest-inf_SOURCES)
|
---|
60 | VBoxGuest-inf_BLDDIRS = \
|
---|
61 | $(PATH_TARGET)/VBoxGuestCat.dir
|
---|
62 |
|
---|
63 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf: $(PATH_SUB_CURRENT)/VBoxGuest/VBoxGuest.inf $(MAKEFILE_CURRENT) | $$(call DIRDEP,$$(@D))
|
---|
64 | $(call MSG_GENERATE,VBoxGuest-inf,$@,$<)
|
---|
65 | $(call VBOX_EDIT_INF_FN,$<,$@)
|
---|
66 |
|
---|
67 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys: $$(TARGET_VBoxGuest) | $$(call DIRDEP,$$(@D))
|
---|
68 | $(INSTALL) -m 644 $< $(@D)
|
---|
69 |
|
---|
70 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxControl.exe: $$(TARGET_VBoxControl) | $$(call DIRDEP,$$(@D))
|
---|
71 | $(INSTALL) -m 755 $< $(@D)
|
---|
72 |
|
---|
73 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxTray.exe: $$(TARGET_VBoxTray) | $$(call DIRDEP,$$(@D))
|
---|
74 | $(INSTALL) -m 755 $< $(@D)
|
---|
75 |
|
---|
76 | $(PATH_TARGET)/VBoxGuestCat.dir/VBCoInst.dll: $$(TARGET_VBCoInst) | $$(call DIRDEP,$$(@D))
|
---|
77 | $(INSTALL) -m 644 $< $(@D)
|
---|
78 |
|
---|
79 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.cat: \
|
---|
80 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf \
|
---|
81 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys \
|
---|
82 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxControl.exe \
|
---|
83 | $(PATH_TARGET)/VBoxGuestCat.dir/VBoxTray.exe \
|
---|
84 | $(PATH_TARGET)/VBoxGuestCat.dir/VBCoInst.dll
|
---|
85 | $(call MSG_TOOL,Inf2Cat,VBoxGuest-inf,$@,$<)
|
---|
86 | $(call VBOX_MAKE_CAT_FN, $(@D),$@)
|
---|
87 |
|
---|
88 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
89 |
|
---|