[40385] | 1 | # $Id: Makefile.kmk 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
| 2 | ## @file
|
---|
| 3 | # Sub-Makefile for the Extension Packs.
|
---|
| 4 | #
|
---|
| 5 |
|
---|
| 6 | #
|
---|
[98103] | 7 | # Copyright (C) 2010-2023 Oracle and/or its affiliates.
|
---|
[40385] | 8 | #
|
---|
[96407] | 9 | # This file is part of VirtualBox base platform packages, as
|
---|
| 10 | # available from https://www.virtualbox.org.
|
---|
[40385] | 11 | #
|
---|
[96407] | 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 | #
|
---|
[40385] | 27 |
|
---|
| 28 | SUB_DEPTH = ../../..
|
---|
| 29 | include $(KBUILD_PATH)/subheader.kmk
|
---|
| 30 |
|
---|
| 31 | ifdef VBOX_WITH_EXTPACK_PUEL_BUILD
|
---|
| 32 | include $(PATH_SUB_CURRENT)/Puel/Makefile.kmk
|
---|
| 33 | endif
|
---|
[93419] | 34 | if defined(VBOX_WITH_R0_MODULES) && (defined(VBOX_WITH_EXTPACK_VBOXDTRACE) || defined(VBOX_WITH_DTRACE))
|
---|
[53979] | 35 | include $(PATH_SUB_CURRENT)/VBoxDTrace/Makefile.kmk
|
---|
| 36 | endif
|
---|
[40385] | 37 | ifdef VBOX_WITH_EXTPACK_VNC
|
---|
| 38 | include $(PATH_SUB_CURRENT)/VNC/Makefile.kmk
|
---|
| 39 | endif
|
---|
[47207] | 40 | ifdef VBOX_WITH_EXTPACK_BUSMOUSESAMPLE
|
---|
| 41 | include $(PATH_SUB_CURRENT)/BusMouseSample/Makefile.kmk
|
---|
| 42 | endif
|
---|
[40385] | 43 |
|
---|
[41477] | 44 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
[40385] | 45 |
|
---|