1 | # $Id: Makefile.kmk 41477 2012-05-29 11:43:27Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Install misc stuff and create dist packages.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2012 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 |
|
---|
18 | SUB_DEPTH = ../../..
|
---|
19 | include $(KBUILD_PATH)/subheader.kmk
|
---|
20 |
|
---|
21 | #
|
---|
22 | # Include Sub-Makefiles.
|
---|
23 | #
|
---|
24 | ifndef VBOX_ONLY_SDK
|
---|
25 | if "$(KBUILD_TARGET)" == "darwin" && "$(KBUILD_HOST)" == "darwin"
|
---|
26 | include $(PATH_SUB_CURRENT)/darwin/Makefile.kmk
|
---|
27 | endif
|
---|
28 | if "$(KBUILD_TARGET)" == "linux" && "$(KBUILD_HOST)" == "linux"
|
---|
29 | include $(PATH_SUB_CURRENT)/linux/Makefile.kmk
|
---|
30 | endif
|
---|
31 | if "$(KBUILD_TARGET)" == "solaris" && "$(KBUILD_HOST)" == "solaris"
|
---|
32 | include $(PATH_SUB_CURRENT)/solaris/Makefile.kmk
|
---|
33 | endif
|
---|
34 | if "$(KBUILD_TARGET)" == "win" && "$(KBUILD_HOST)" == "win"
|
---|
35 | include $(PATH_SUB_CURRENT)/win/Makefile.kmk
|
---|
36 | endif
|
---|
37 | if "$(KBUILD_TARGET)" == "freebsd" && "$(KBUILD_HOST)" == "freebsd"
|
---|
38 | include $(PATH_SUB_CURRENT)/freebsd/Makefile.kmk
|
---|
39 | endif
|
---|
40 | endif
|
---|
41 |
|
---|
42 | include $(PATH_SUB_CURRENT)/common/Makefile.kmk
|
---|
43 |
|
---|
44 | if defined(VBOX_ONLY_SDK) ## @todo || defined(VBOX_WITH_SDK)
|
---|
45 | #
|
---|
46 | # Package the VirtualBox SDK.
|
---|
47 | #
|
---|
48 | VBOX_SDK_ZIP = $(PATH_STAGE_BIN)/VirtualBoxSDK-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).zip
|
---|
49 | PACKING += $(VBOX_SDK_ZIP)
|
---|
50 | OTHER_CLEANS += $(VBOX_SDK_ZIP) \
|
---|
51 | $(wildcard $(PATH_STAGE_BIN)/VirtualBoxSDK-*-r*.zip)
|
---|
52 |
|
---|
53 | VBOX_ZIP ?= zip
|
---|
54 | # @todo: wrong, it must depend on everything included in SDK
|
---|
55 | $(VBOX_SDK_ZIP): \
|
---|
56 | $(PATH_STAGE_BIN)/sdk \
|
---|
57 | $(VBOX_VERSION_STAMP)
|
---|
58 | $(call MSG_L1,Making SDK delivery $@)
|
---|
59 | $(QUIET)$(REDIRECT) $(if $(QUIET),-wo /dev/null,) -C $(PATH_STAGE_BIN) -- $(VBOX_ZIP) -r9 $@ sdk
|
---|
60 | endif
|
---|
61 |
|
---|
62 |
|
---|
63 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
64 |
|
---|