[2478] | 1 | # $Id: Makefile.kmk 99715 2023-05-10 00:43:47Z vboxsync $
|
---|
| 2 | ## @file
|
---|
| 3 | # Top-level makefile for the src directory.
|
---|
[1] | 4 | #
|
---|
| 5 |
|
---|
| 6 | #
|
---|
[98103] | 7 | # Copyright (C) 2006-2023 Oracle and/or its affiliates.
|
---|
[5999] | 8 | #
|
---|
[96407] | 9 | # This file is part of VirtualBox base platform packages, as
|
---|
| 10 | # available from https://www.virtualbox.org.
|
---|
[5999] | 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 | #
|
---|
[1] | 27 |
|
---|
[10189] | 28 | SUB_DEPTH = ..
|
---|
| 29 | include $(KBUILD_PATH)/subheader.kmk
|
---|
| 30 |
|
---|
[42265] | 31 | include $(PATH_SUB_CURRENT)/bldprogs/Makefile.kmk
|
---|
| 32 | include $(PATH_SUB_CURRENT)/VBox/Makefile.kmk
|
---|
[99715] | 33 | if !defined(VBOX_ONLY_SDK) || "$(KBUILD_TARGET)" != "win"
|
---|
[99701] | 34 | include $(PATH_SUB_CURRENT)/libs/Makefile.kmk
|
---|
| 35 | endif
|
---|
[99699] | 36 | ifndef VBOX_ONLY_BUILD
|
---|
[42269] | 37 | # Normal build.
|
---|
[10191] | 38 | ifneq ($(wildcard $(PATH_SUB_CURRENT)/apps),)
|
---|
[10189] | 39 | include $(PATH_SUB_CURRENT)/apps/Makefile.kmk
|
---|
| 40 | endif
|
---|
[99699] | 41 | endif
|
---|
[10189] | 42 |
|
---|
[41477] | 43 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
[14158] | 44 |
|
---|