1 | # $Id: Makefile.kmk 106061 2024-09-16 14:03:52Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Top-level makefile for the VBox frontends.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2024 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.org.
|
---|
11 | #
|
---|
12 | # This program is free software; you can redistribute it and/or
|
---|
13 | # modify it under the terms of the GNU General Public License
|
---|
14 | # as published by the Free Software Foundation, in version 3 of the
|
---|
15 | # License.
|
---|
16 | #
|
---|
17 | # This program is distributed in the hope that it will be useful, but
|
---|
18 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | # General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | #
|
---|
25 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | #
|
---|
27 |
|
---|
28 | SUB_DEPTH = ../../..
|
---|
29 | include $(KBUILD_PATH)/subheader.kmk
|
---|
30 |
|
---|
31 | # Include Sub-Makefiles
|
---|
32 | ifdef VBOX_WITH_MAIN
|
---|
33 | include $(PATH_SUB_CURRENT)/VBoxManage/Makefile.kmk
|
---|
34 | endif
|
---|
35 | ifndef VBOX_ONLY_DOCS
|
---|
36 | ifdef VBOX_WITH_MAIN
|
---|
37 | ifdef VBOX_WITH_FE_BALLOONCTRL
|
---|
38 | include $(PATH_SUB_CURRENT)/VBoxBalloonCtrl/Makefile.kmk
|
---|
39 | endif
|
---|
40 | ifdef VBOX_WITH_FE_AUTOSTART
|
---|
41 | include $(PATH_SUB_CURRENT)/VBoxAutostart/Makefile.kmk
|
---|
42 | endif
|
---|
43 | ifdef VBOX_WITH_FE_BUGREPORT
|
---|
44 | include $(PATH_SUB_CURRENT)/VBoxBugReport/Makefile.kmk
|
---|
45 | endif
|
---|
46 | endif
|
---|
47 | ifdef VBOX_WITH_VBOXBFE
|
---|
48 | include $(PATH_SUB_CURRENT)/VBoxBFE/Makefile.kmk
|
---|
49 | endif
|
---|
50 | ifdef VBOX_WITH_VBOXSDL
|
---|
51 | include $(PATH_SUB_CURRENT)/VBoxSDL/Makefile.kmk
|
---|
52 | endif
|
---|
53 | ifdef VBOX_WITH_VBOXFB
|
---|
54 | include $(PATH_SUB_CURRENT)/VBoxFB/Makefile.kmk
|
---|
55 | endif
|
---|
56 | ifdef VBOX_WITH_HEADLESS
|
---|
57 | include $(PATH_SUB_CURRENT)/VBoxHeadless/Makefile.kmk
|
---|
58 | endif
|
---|
59 | ifdef VBOX_WITH_QTGUI
|
---|
60 | include $(PATH_SUB_CURRENT)/VirtualBox/Makefile.kmk
|
---|
61 | endif
|
---|
62 | ifdef VBOX_WITH_INTNET_PCAP
|
---|
63 | include $(PATH_SUB_CURRENT)/VBoxIntNetPcap/Makefile.kmk
|
---|
64 | endif
|
---|
65 | include $(PATH_SUB_CURRENT)/Common/Makefile.kmk
|
---|
66 | endif # !VBOX_ONLY_DOCS
|
---|
67 |
|
---|
68 | ## @todo Include Python shell into binary delivery?
|
---|
69 | ifdef VBOX_ONLY_SDK
|
---|
70 | include $(PATH_SUB_CURRENT)/VBoxShell/Makefile.kmk
|
---|
71 | endif
|
---|
72 |
|
---|
73 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
74 |
|
---|