VirtualBox

source: vbox/trunk/src/VBox/Installer/Makefile.kmk@ 86506

Last change on this file since 86506 was 82968, checked in by vboxsync, 4 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1# $Id: Makefile.kmk 82968 2020-02-04 10:35:17Z vboxsync $
2## @file
3# Install misc stuff and create dist packages.
4#
5
6#
7# Copyright (C) 2006-2020 Oracle Corporation
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
18SUB_DEPTH = ../../..
19include $(KBUILD_PATH)/subheader.kmk
20
21#
22# Make sure our Config.kmk is included.
23#
24ifndef VBOX_INSTALLER_CONFIG_KMK_INCLUDED
25 include $(PATH_SUB_CURRENT)/Config.kmk
26endif
27
28#
29# Include Sub-Makefiles.
30#
31ifndef VBOX_ONLY_SDK
32 if "$(KBUILD_TARGET)" == "darwin" && "$(KBUILD_HOST)" == "darwin"
33 include $(PATH_SUB_CURRENT)/darwin/Makefile.kmk
34 endif
35 if "$(KBUILD_TARGET)" == "linux" && "$(KBUILD_HOST)" == "linux"
36 include $(PATH_SUB_CURRENT)/linux/Makefile.kmk
37 endif
38 if "$(KBUILD_TARGET)" == "solaris" && "$(KBUILD_HOST)" == "solaris"
39 include $(PATH_SUB_CURRENT)/solaris/Makefile.kmk
40 endif
41 if "$(KBUILD_TARGET)" == "win" && "$(KBUILD_HOST)" == "win"
42 include $(PATH_SUB_CURRENT)/win/Makefile.kmk
43 endif
44 if "$(KBUILD_TARGET)" == "freebsd" && "$(KBUILD_HOST)" == "freebsd"
45 include $(PATH_SUB_CURRENT)/freebsd/Makefile.kmk
46 endif
47endif
48
49include $(PATH_SUB_CURRENT)/common/Makefile.kmk
50
51if defined(VBOX_ONLY_SDK) ## @todo || defined(VBOX_WITH_SDK)
52 #
53 # Package the VirtualBox SDK.
54 #
55 VBOX_SDK_ZIP = $(PATH_STAGE_BIN)/VirtualBoxSDK-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).zip
56 PACKING += $(VBOX_SDK_ZIP)
57 OTHER_CLEANS += $(VBOX_SDK_ZIP) \
58 $(wildcard $(PATH_STAGE_BIN)/VirtualBoxSDK-*-r*.zip)
59
60# @todo: wrong, it must depend on everything included in SDK
61$(VBOX_SDK_ZIP): \
62 $(PATH_STAGE_BIN)/sdk \
63 $(VBOX_VERSION_STAMP)
64 $(call MSG_L1,Making SDK delivery $@)
65 $(QUIET)$(REDIRECT) $(if $(QUIET),-wo /dev/null,) -C $(PATH_STAGE_BIN) -- $(VBOX_ZIP) -r9 $@ sdk
66endif
67
68
69include $(FILE_KBUILD_SUB_FOOTER)
70
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use