1 | # $Id: Makefile.kmk 12447 2008-09-14 23:33:15Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Top-level makefile for src/VBox.
|
---|
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 | ifdef VBOX_SINGLE_MAKEFILE
|
---|
23 | SUB_DEPTH = ../..
|
---|
24 | include $(KBUILD_PATH)/subheader.kmk
|
---|
25 |
|
---|
26 | ifdef VBOX_ONLY_ADDITIONS
|
---|
27 | include $(PATH_SUB_CURRENT)/Runtime/Makefile.kmk
|
---|
28 | include $(PATH_SUB_CURRENT)/Additions/Makefile.kmk
|
---|
29 |
|
---|
30 | else ifdef VBOX_ONLY_DOCS
|
---|
31 | include $(PATH_SUB_CURRENT)/Runtime/Makefile.kmk
|
---|
32 | include $(PATH_SUB_CURRENT)/HostDrivers/Makefile.kmk
|
---|
33 | include $(PATH_SUB_CURRENT)/Frontends/Makefile.kmk
|
---|
34 |
|
---|
35 | else ifdef VBOX_ONLY_SDK
|
---|
36 | include $(PATH_SUB_CURRENT)/Main/Makefile.kmk
|
---|
37 | include $(PATH_SUB_CURRENT)/RDP/Makefile.kmk
|
---|
38 | include $(PATH_SUB_CURRENT)/Installer/Makefile.kmk
|
---|
39 |
|
---|
40 | else
|
---|
41 | ifdef VBOX_WITH_MAIN
|
---|
42 | include $(PATH_SUB_CURRENT)/Main/Makefile.kmk # Do this one first because of soap.
|
---|
43 | endif
|
---|
44 | include $(PATH_SUB_CURRENT)/Runtime/Makefile.kmk
|
---|
45 | include $(PATH_SUB_CURRENT)/VMM/Makefile.kmk
|
---|
46 | include $(PATH_SUB_CURRENT)/Devices/Makefile.kmk
|
---|
47 | include $(PATH_SUB_CURRENT)/Disassembler/Makefile.kmk
|
---|
48 | include $(PATH_SUB_CURRENT)/HostDrivers/Makefile.kmk
|
---|
49 | include $(PATH_SUB_CURRENT)/HostServices/Makefile.kmk
|
---|
50 | include $(PATH_SUB_CURRENT)/Debugger/Makefile.kmk
|
---|
51 | include $(PATH_SUB_CURRENT)/Frontends/Makefile.kmk
|
---|
52 | ifdef VBOX_WITH_VRDP
|
---|
53 | include $(PATH_SUB_CURRENT)/RDP/Makefile.kmk
|
---|
54 | endif
|
---|
55 | ifdef VBOX_WITH_ADDITIONS
|
---|
56 | include $(PATH_SUB_CURRENT)/Additions/Makefile.kmk
|
---|
57 | endif
|
---|
58 | ifdef VBOX_WITH_INSTALLER
|
---|
59 | include $(PATH_SUB_CURRENT)/Installer/Makefile.kmk # Keep this last.
|
---|
60 | endif
|
---|
61 | endif # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS
|
---|
62 |
|
---|
63 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
64 |
|
---|
65 | else # !VBOX_SINGLE_MAKEFILE
|
---|
66 | DEPTH = ../..
|
---|
67 | include $(KBUILD_PATH)/header.kmk
|
---|
68 |
|
---|
69 | ifdef VBOX_ONLY_ADDITIONS
|
---|
70 | SUBDIRS = \
|
---|
71 | Runtime \
|
---|
72 | Additions
|
---|
73 |
|
---|
74 | else ifdef VBOX_ONLY_DOCS
|
---|
75 | SUBDIRS = \
|
---|
76 | Runtime \
|
---|
77 | Frontends \
|
---|
78 | HostDrivers
|
---|
79 |
|
---|
80 | else ifdef VBOX_ONLY_SDK
|
---|
81 | SUBDIRS = \
|
---|
82 | Main \
|
---|
83 | RDP \
|
---|
84 | Installer
|
---|
85 |
|
---|
86 | else # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS
|
---|
87 | SUBDIRS_BLDPROGS = Devices Main
|
---|
88 |
|
---|
89 | SUBDIRS = \
|
---|
90 | Runtime \
|
---|
91 | HostDrivers \
|
---|
92 | VMM \
|
---|
93 | Devices \
|
---|
94 | Disassembler \
|
---|
95 | HostServices \
|
---|
96 | Debugger
|
---|
97 |
|
---|
98 | ifdef VBOX_WITH_MAIN
|
---|
99 | SUBDIRS += Main
|
---|
100 | endif
|
---|
101 |
|
---|
102 | ifdef VBOX_WITH_VRDP
|
---|
103 | SUBDIRS += RDP
|
---|
104 | endif
|
---|
105 |
|
---|
106 | ifdef VBOX_WITH_ADDITIONS
|
---|
107 | SUBDIRS += Additions
|
---|
108 | endif
|
---|
109 |
|
---|
110 | SUBDIRS += Frontends
|
---|
111 |
|
---|
112 | # This must be the last one.
|
---|
113 | ifdef VBOX_WITH_INSTALLER
|
---|
114 | SUBDIRS += Installer
|
---|
115 | endif
|
---|
116 | endif # !VBOX_ONLY_ADDITIONS && !VBOX_ONLY_DOCS
|
---|
117 |
|
---|
118 | include $(KBUILD_PATH)/footer.kmk
|
---|
119 | endif # !VBOX_SINGLE_MAKEFILE
|
---|
120 |
|
---|