1 | # $Id: Makefile.kmk 4410 2007-08-28 20:51:29Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Top-level makefile for the VirtualBox Guest Additions.
|
---|
4 | #
|
---|
5 | # This makefile and all it's sub-makefiles are involved in remote
|
---|
6 | # building of additions that cannot be build locally. Typically
|
---|
7 | # tools/env.sh kmk -C src/VBox/Additions build-somehost-additions
|
---|
8 | # is send as a command and the source tree is accessed using an
|
---|
9 | # SMB mount.
|
---|
10 | #
|
---|
11 | # When doing these operations BUILD_TARGET remains the same (not
|
---|
12 | # yet true for linux), and it's therefore important that
|
---|
13 | # Config.kmk and all the involved (sub-)makefiles doesn't make
|
---|
14 | # assumptions about BUILD_TARGET being the same as the additions
|
---|
15 | # target.
|
---|
16 | #
|
---|
17 | # To setup the remote building of an addition target, let's call it
|
---|
18 | # XYZ, you need to add VBOX_REMOTE_XYZ_ADDITIONS_BUILD to your
|
---|
19 | # LocalConfig.kmk. The value is the command(s) required to execute
|
---|
20 | # the equivalent to you locally executing kmk -C src/VBoxAdditions
|
---|
21 | # build_xyz_additions. This means BUILD_TARGET* and BUILD_TYPE needs
|
---|
22 | # to be specified.
|
---|
23 | #
|
---|
24 |
|
---|
25 | #
|
---|
26 | # Copyright (C) 2006-2007 innotek GmbH
|
---|
27 | #
|
---|
28 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
29 | # available from http://www.virtualbox.org. This file is free software;
|
---|
30 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
31 | # General Public License as published by the Free Software Foundation,
|
---|
32 | # in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
33 | # distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
34 | # be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
35 |
|
---|
36 | DEPTH = ../../..
|
---|
37 | include $(PATH_KBUILD)/subheader.kmk
|
---|
38 |
|
---|
39 | #
|
---|
40 | # Make some indicator adjustments to keep things simple in these makefiles.
|
---|
41 | #
|
---|
42 | ifdef VBOX_ADDITIONS_LINUX_ONLY
|
---|
43 | VBOX_ADDITIONS_XYZ_ONLY = 1
|
---|
44 | VBOX_WITH_LINUX_ADDITIONS = 1
|
---|
45 | VBOX_REMOTE_LINUX_ADDITIONS_BUILD =
|
---|
46 | VBOX_WITH_WIN32_ADDITIONS =
|
---|
47 | else ifdef VBOX_ADDITIONS_WIN32_ONLY
|
---|
48 | VBOX_ADDITIONS_XYZ_ONLY = 1
|
---|
49 | VBOX_WITH_WIN32_ADDITIONS = 1
|
---|
50 | VBOX_REMOTE_WIN32_ADDITIONS_BUILD =
|
---|
51 | VBOX_WITH_LINUX_ADDITIONS =
|
---|
52 | endif
|
---|
53 |
|
---|
54 | # Include sub-makefiles.
|
---|
55 | include $(PATH_SUB_CURRENT)/common/Makefile.kmk
|
---|
56 | ifdef VBOX_WITH_WIN32_ADDITIONS
|
---|
57 | ifndef VBOX_REMOTE_WIN32_ADDITIONS_BUILD
|
---|
58 | include $(PATH_SUB_CURRENT)/WINNT/Makefile.kmk
|
---|
59 | endif
|
---|
60 | endif
|
---|
61 |
|
---|
62 | ifdef VBOX_WITH_LINUX_ADDITIONS
|
---|
63 | SUBDIRS += linux
|
---|
64 | LINUXINSTALLER = $(PATH_BIN)/additions/VBoxLinuxAdditions.run
|
---|
65 | endif
|
---|
66 | LINUXINSTALLER_CROSS = $(PATH_ROOT)/out/linux.x86/$(BUILD_TYPE)/bin/additions/VBoxLinuxAdditions.run
|
---|
67 | ifdef VBOX_ADDITIONS_LINUX_CROSS
|
---|
68 | OTHER_CLEAN += $(LINUXINSTALLER_CROSS)
|
---|
69 | LINUXINSTALLER = $(LINUXINSTALLER_CROSS)
|
---|
70 | endif
|
---|
71 |
|
---|
72 | # The packing target rule, but only if we're on the local build box.
|
---|
73 | ifndef VBOX_ADDITIONS_XYZ_ONLY
|
---|
74 | ifneq ($(VBOX_WITH_WIN32_ADDITIONS)$(VBOX_WITH_LINUX_ADDITIONS),)
|
---|
75 | PACKING += $(if $(VBOX_OSE),,$(PATH_BIN)/additions/VBoxGuestAdditions.iso)
|
---|
76 | endif
|
---|
77 | endif
|
---|
78 |
|
---|
79 | include $(PATH_KBUILD)/subfooter.kmk
|
---|
80 |
|
---|
81 |
|
---|
82 | ifdef VBOX_WITH_WIN32_ADDITIONS
|
---|
83 | GUESTADDITIONS_WIN32_DEPS = $(PATH_BIN)/additions/VBoxGuest.sys \
|
---|
84 | ./WINNT/VBoxGuest/VBoxGuest.inf \
|
---|
85 | $(PATH_BIN)/additions/VBoxService.exe \
|
---|
86 | $(PATH_BIN)/additions/VBoxHook.dll \
|
---|
87 | $(PATH_BIN)/additions/VBoxControl.exe \
|
---|
88 | $(PATH_BIN)/additions/VBCoInst.dll \
|
---|
89 | $(PATH_BIN)/additions/VBoxMouse.sys \
|
---|
90 | ./WINNT/MouseFilter/VBoxMouse.inf \
|
---|
91 | $(PATH_BIN)/additions/VBoxVideo.sys \
|
---|
92 | ./WINNT/Graphics/Miniport/VBoxVideo.inf \
|
---|
93 | $(PATH_BIN)/additions/VBoxDisp.dll \
|
---|
94 | $(PATH_BIN)/additions/VBoxGINA.dll \
|
---|
95 | $(PATH_BIN)/additions/VBoxGuestAdditions.exe \
|
---|
96 | ./WINNT/Installer/AUTORUN.INF \
|
---|
97 | ./WINNT/Network/AMD/netamd.inf \
|
---|
98 | ./WINNT/Network/AMD/pcntpci5.cat \
|
---|
99 | ./WINNT/Network/AMD/PCNTPCI5.sys
|
---|
100 |
|
---|
101 | ifdef VBOX_WITH_WIN32_ADDITIONS_SHAREDFOLDERS
|
---|
102 | GUESTADDITIONS_WIN32_DEPS += \
|
---|
103 | $(PATH_BIN)/additions/VBoxMRXNP.dll \
|
---|
104 | $(PATH_BIN)/additions/VBoxSF.sys
|
---|
105 | endif
|
---|
106 |
|
---|
107 | GUESTADDITIONS_WIN32_FILESPEC = \
|
---|
108 | driver/VBoxGuest/VBoxGuest.sys=$(PATH_BIN)/additions/VBoxGuest.sys \
|
---|
109 | driver/VBoxGuest/VBoxGuest.inf=./WINNT/VBoxGuest/VBoxGuest.inf \
|
---|
110 | driver/VBoxGuest/VBoxService.exe=$(PATH_BIN)/additions/VBoxService.exe \
|
---|
111 | driver/VBoxGuest/VBoxHook.dll=$(PATH_BIN)/additions/VBoxHook.dll \
|
---|
112 | driver/VBoxGuest/VBoxControl.exe=$(PATH_BIN)/additions/VBoxControl.exe \
|
---|
113 | driver/VBoxGuest/VBCoInst.dll=$(PATH_BIN)/additions/VBCoInst.dll \
|
---|
114 | driver/VBoxGuest/VBoxMouse.sys=$(PATH_BIN)/additions/VBoxMouse.sys \
|
---|
115 | driver/VBoxGuest/VBoxMouse.inf=./WINNT/MouseFilter/VBoxMouse.inf \
|
---|
116 | driver/VBoxVideo/VBoxVideo.sys=$(PATH_BIN)/additions/VBoxVideo.sys \
|
---|
117 | driver/VBoxVideo/VBoxVideo.inf=./WINNT/Graphics/Miniport/VBoxVideo.inf \
|
---|
118 | driver/VBoxVideo/VBoxDisp.dll=$(PATH_BIN)/additions/VBoxDisp.dll \
|
---|
119 | driver/VBoxSF/VBoxSF.sys=$(PATH_BIN)/additions/VBoxSF.sys \
|
---|
120 | driver/VBoxSF/VBoxMRXNP.dll=$(PATH_BIN)/additions/VBoxMRXNP.dll \
|
---|
121 | gina/VBoxGINA.dll=$(PATH_BIN)/additions/VBoxGINA.dll \
|
---|
122 | AMD_PCnet/netamd.inf=./WINNT/Network/AMD/netamd.inf \
|
---|
123 | AMD_PCnet/pcntpci5.cat=./WINNT/Network/AMD/pcntpci5.cat \
|
---|
124 | AMD_PCnet/PCNTPCI5.sys=./WINNT/Network/AMD/PCNTPCI5.sys \
|
---|
125 | VBoxGuestAdditions.exe=$(PATH_BIN)/additions/VBoxGuestAdditions.exe \
|
---|
126 | AUTORUN.INF=./WINNT/Installer/AUTORUN.INF
|
---|
127 | endif
|
---|
128 |
|
---|
129 | ifdef LINUXINSTALLER
|
---|
130 | GUESTADDITIONS_LINUX_DEPS = $(LINUXINSTALLER)
|
---|
131 | GUESTADDITIONS_LINUX_FILESPEC = VBoxLinuxAdditions.run=$(LINUXINSTALLER)
|
---|
132 | endif
|
---|
133 |
|
---|
134 | ifdef VBOX_WITH_OS2_ADDITIONS_BIN
|
---|
135 | GUESTADDITIONS_OS2_FILESPEC = \
|
---|
136 | os2/VBoxGuest.sys=./os2/Bin/VBoxGuest.sys \
|
---|
137 | os2/VBoxService.exe=./os2/Bin/VBoxService.exe \
|
---|
138 | os2/gengradd.dll=./os2/Bin/gengradd.dll \
|
---|
139 | os2/libc063.dll=./os2/Bin/libc063.dll \
|
---|
140 | os2/readme.txt=./os2/Bin/readme.txt \
|
---|
141 | os2/vboxmouse.sys=./os2/Bin/vboxmouse.sys
|
---|
142 | endif
|
---|
143 |
|
---|
144 | #
|
---|
145 | # Build the Guest Additions ISO image.
|
---|
146 | #
|
---|
147 | $(PATH_BIN)/additions/VBoxGuestAdditions.iso: \
|
---|
148 | $(GUESTADDITIONS_WIN32_DEPS) $(GUESTADDITIONS_LINUX_DEPS) $(VBOX_SVN_REV_KMK) \
|
---|
149 | Makefile.kmk
|
---|
150 | $(call MSG_TOOL,mkisofs,,$@)
|
---|
151 | $(QUIET)$(VBOX_MKISOFS) -rational-rock -joliet -iso-level 4 -volid "VBOXADDITIONS_$(VBOX_VERSION_STRING)_$(VBOX_SVN_REV)" -l -graft-points -o $@ \
|
---|
152 | $(GUESTADDITIONS_WIN32_FILESPEC) $(GUESTADDITIONS_LINUX_FILESPEC) $(GUESTADDITIONS_OS2_FILESPEC)
|
---|
153 |
|
---|
154 | #
|
---|
155 | # Remote building.
|
---|
156 | #
|
---|
157 | ifdef VBOX_REMOTE_WIN32_ADDITIONS_BUILD
|
---|
158 | OTHER_CLEAN += $(PATH_TARGET)/ts-remote-build-win32-additions
|
---|
159 | $(GUESTADDITIONS_WIN32_DEPS): $(PATH_TARGET)/ts-remote-build-win32-additions
|
---|
160 | $(PATH_TARGET)/ts-remote-build-win32-additions:
|
---|
161 | $(RM) -f $@
|
---|
162 | $(VBOX_REMOTE_WIN32_ADDITIONS_BUILD)
|
---|
163 | $(APPEND) $@
|
---|
164 |
|
---|
165 | endif # VBOX_REMOTE_BUILD_WIN32_ADDITIONS
|
---|
166 |
|
---|
167 | build-win32-additions:
|
---|
168 | ifneq ($(BUILD_TARGET),linux) # Nothing is signed here and wine is faster building it.
|
---|
169 | $(KMK) VBOX_ADDITIONS_WIN32_ONLY=1 -C ../Runtime
|
---|
170 | endif
|
---|
171 | $(KMK) VBOX_ADDITIONS_WIN32_ONLY=1 -C . all packing
|
---|
172 |
|
---|
173 |
|
---|
174 | # build the Linux installer on a remote machine
|
---|
175 | # TODO: Move the VBOX_REMOTE_LINUX32_ADDITIONS_BUILD stuff into LocaleConfig.kmk on the x86 box.
|
---|
176 | VBOX_REMOTE_LINUX32_ADDITIONS_BUILD ?= ssh vbox@$(VBOX_ADDITIONS_LINUX_CROSS_HOST) "./enter-rhel3-jail /mnt/tinderwin_vbox/w32-rel/tools/env.sh --no-wine kmk -C src/VBox/Additions build-linux32-additions BUILD_TYPE=release"
|
---|
177 | $(LINUXINSTALLER_CROSS):
|
---|
178 | $(VBOX_REMOTE_LINUX32_ADDITIONS_BUILD)
|
---|
179 |
|
---|
180 | test-build-linux32-additions: $(LINUXINSTALLER_CROSS)
|
---|
181 | build-linux32-additions:
|
---|
182 | $(KMK) VBOX_ADDITIONS_LINUX_ONLY=1 -C ../Runtime
|
---|
183 | $(KMK) VBOX_ADDITIONS_LINUX_ONLY=1 -C common
|
---|
184 | $(KMK) VBOX_ADDITIONS_LINUX_ONLY=1 -C linux all packing
|
---|
185 |
|
---|