1 | # $Id: Makefile.kmk 62522 2016-07-22 19:17:25Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for the Windows NT++ Guest Additions.
|
---|
4 | #
|
---|
5 |
|
---|
6 | # Copyright (C) 2006-2016 Oracle Corporation
|
---|
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 |
|
---|
17 | SUB_DEPTH = ../../../..
|
---|
18 | include $(KBUILD_PATH)/subheader.kmk
|
---|
19 |
|
---|
20 | # Include Sub-Makefiles.
|
---|
21 | include $(PATH_SUB_CURRENT)/Graphics/Makefile.kmk
|
---|
22 | include $(PATH_SUB_CURRENT)/Mouse/Makefile.kmk
|
---|
23 | include $(PATH_SUB_CURRENT)/VBoxTray/Makefile.kmk
|
---|
24 | include $(PATH_SUB_CURRENT)/VBoxGINA/Makefile.kmk
|
---|
25 | include $(PATH_SUB_CURRENT)/VBoxCredProv/Makefile.kmk
|
---|
26 | include $(PATH_SUB_CURRENT)/VBoxHook/Makefile.kmk
|
---|
27 | include $(PATH_SUB_CURRENT)/tools/Makefile.kmk
|
---|
28 | ifdef VBOX_WITH_WIN32_ADDITIONS_SHAREDFOLDERS
|
---|
29 | include $(PATH_SUB_CURRENT)/SharedFolders/Makefile.kmk
|
---|
30 | endif
|
---|
31 | ifneq ($(wildcard $(PATH_SUB_CURRENT)/Installer/Makefile.kmk),)
|
---|
32 | include $(PATH_SUB_CURRENT)/Installer/Makefile.kmk
|
---|
33 | endif
|
---|
34 |
|
---|
35 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
36 |
|
---|