VirtualBox

source: vbox/trunk/src/VBox/Additions/Makefile.kmk@ 37326

Last change on this file since 37326 was 36658, checked in by vboxsync, 14 years ago

Additions/linux/installer: shell script refactoring

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.5 KB
Line 
1# $Id: Makefile.kmk 36658 2011-04-12 15:40:51Z vboxsync $
2## @file
3# Top-level makefile for the VirtualBox Guest Additions.
4#
5
6#
7# Copyright (C) 2006-2010 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# Globals
23#
24VBOX_PATH_ADDITIONS_SRC := $(PATH_SUB_CURRENT)
25
26#
27# Cross building of the additions is generally done by remote building
28# by means of smbfs, cifs, VBOX_ONLY_ADDITIONS=1 and setting KBUILD_TARGET
29# and KBUILD_TARGET_ARCH to the desired target and architecture.
30#
31# Limited support for cross building the windows additions using wine
32# is provided. There are a couple of issues with the approach (lack of
33# signing, no VC++ 8 support, ++) that makes it unsuitable for releases.
34#
35#
36# Note! VBOX_WITH_ADDITIONS is checked for by our parent makefile.
37#
38# Note! VBOX_WITH_X11_ADDITIONS is set in Config.kmk
39#
40# Note! The additions build box will set the VBOX_WITH_ADDITIONS_ISO.win.x86
41# variables before invoking us from the root makefile.
42#
43# ==> All we have to worry about is what to do on the target we're on.
44#
45VBOX_WITH_ADDITIONS_ISO.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) = 1
46
47# Include sub-makefiles.
48include $(PATH_SUB_CURRENT)/common/Makefile.kmk
49
50ifndef VBOX_ONLY_TESTSUITE
51 ifdef VBOX_WITH_X11_ADDITIONS
52 include $(PATH_SUB_CURRENT)/x11/Makefile.kmk
53 endif
54
55 ifeq ($(KBUILD_TARGET),freebsd)
56 include $(PATH_SUB_CURRENT)/freebsd/Makefile.kmk
57 endif
58 ifeq ($(KBUILD_TARGET),linux)
59 include $(PATH_SUB_CURRENT)/linux/Makefile.kmk
60 endif
61 #ifeq ($(KBUILD_TARGET),os2)
62 # include $(PATH_SUB_CURRENT)/os2/Makefile.kmk
63 #endif
64 ifeq ($(KBUILD_TARGET),solaris)
65 include $(PATH_SUB_CURRENT)/solaris/Makefile.kmk
66 endif
67 ifeq ($(KBUILD_TARGET),win)
68 include $(PATH_SUB_CURRENT)/WINNT/Makefile.kmk
69 endif
70 ifeq ($(KBUILD_TARGET),darwin)
71 include $(PATH_SUB_CURRENT)/darwin/Makefile.kmk
72 endif
73
74 ifeq ($(KBUILD_TARGET),linux)
75 INSTALLS += LnxAddIso-scripts
76 LnxAddIso-scripts_INST = bin/additions
77 LnxAddIso-scripts_MODE = a+rx,u+w
78 LnxAddIso-scripts_SOURCES = \
79 $(LnxAddIso-scripts_0_OUTDIR)/runasroot.sh \
80 $(LnxAddIso-scripts_0_OUTDIR)/autorun.sh
81 LnxAddIso-scripts_CLEAN = \
82 $(LnxAddIso-scripts_0_OUTDIR)/runasroot.sh \
83 $(LnxAddIso-scripts_0_OUTDIR)/autorun.sh
84
85 $$(LnxAddIso-scripts_0_OUTDIR)/runasroot.sh: \
86 $(PATH_SUB_CURRENT)/../Installer/linux/runasroot.sh \
87 $(PATH_SUB_CURRENT)/../Installer/linux/sh-utils.sh \
88 | $$(dir $$@)
89 $(QUIET)$(SED) \
90 -e '/#include sh-utils.sh/ {' \
91 -e "r $(PATH_ROOT)/src/VBox/Installer/linux/sh-utils.sh" \
92 -e 'd' \
93 -e '}' \
94 --output $@ \
95 $<
96
97 $$(LnxAddIso-scripts_0_OUTDIR)/autorun.sh: \
98 $(PATH_SUB_CURRENT)/linux/installer/autorun.sh \
99 $(PATH_SUB_CURRENT)/../Installer/linux/sh-utils.sh \
100 | $$(dir $$@)
101 $(QUIET)$(SED) \
102 -e '/#include sh-utils.sh/ {' \
103 -e "r $(PATH_ROOT)/src/VBox/Installer/linux/sh-utils.sh" \
104 -e 'd' \
105 -e '}' \
106 --output $@ \
107 $<
108 endif # KBUILD_TARGET == linux
109 ifeq ($(KBUILD_TARGET),win)
110 #
111 # Inf2Cat requires all the files referenced in the .inf file
112 # to be present in the directory, so we have to do this from here,
113 # since VBoxGuest.sys is being built from the common sources.
114 #
115 INSTALLS += VBoxGuest-inf
116 VBoxGuest-inf_INST = $(INST_ADDITIONS)
117 VBoxGuest-inf_MODE = a+r,u+w
118 VBoxGuest-inf_SOURCES = \
119 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf
120 ifdef VBOX_SIGN_ADDITIONS
121 VBoxGuest-inf_SOURCES += \
122 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.cat \
123 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys \
124 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxControl.exe \
125 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxTray.exe
126 endif # signing
127 VBoxGuest-inf_CLEAN = $(VBoxGuest-inf_SOURCES)
128 VBoxGuest-inf_BLDDIRS = \
129 $(PATH_TARGET)/VBoxGuestCat.dir
130
131 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf: $(PATH_SUB_CURRENT)/common/VBoxGuest/win/VBoxGuest.inf $(MAKEFILE_CURRENT) | $$(dir $$@)
132 $(call MSG_GENERATE,VBoxGuest-inf,$@,$<)
133 $(call VBOX_EDIT_INF_FN,$<,$@)
134
135 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys: $$(TARGET_VBoxGuest) | $$(dir $$@)
136 $(INSTALL) -m 644 $< $(@D)
137
138 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxControl.exe: $$(TARGET_VBoxControl) | $$(dir $$@)
139 $(INSTALL) -m 755 $< $(@D)
140
141 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxTray.exe: $$(TARGET_VBoxTray) | $$(dir $$@)
142 $(INSTALL) -m 755 $< $(@D)
143
144 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.cat: \
145 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.inf \
146 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxGuest.sys \
147 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxControl.exe \
148 $(PATH_TARGET)/VBoxGuestCat.dir/VBoxTray.exe
149 $(call MSG_TOOL,Inf2Cat,VBoxGuest-inf,$@,$<)
150 $(call VBOX_MAKE_CAT_FN, $(@D),$@)
151 endif # KBUILD_TARGET == win
152
153 # The packing target rule, but only if we're on the local build box.
154 # (VBOX_WITHOUT_ADDITIONS_ISO is used by the additions build box, see the root makefile.)
155 ifndef VBOX_WITHOUT_ADDITIONS_ISO
156 PACKING += $(PATH_BIN)/additions/VBoxGuestAdditions.iso
157 endif
158endif # !VBOX_ONLY_TESTSUITE
159
160include $(KBUILD_PATH)/subfooter.kmk
161
162#
163# File per-OS/arch file specs for the additions iso (alphabetical order).
164#
165# We test for the VBOX_WITH_ADDITIONS_ISO.os.arch so that we don't have to
166# do the $(if )'ing down where the GUESTADDITIONS_FILESPEC.os.arch down
167# in the dependency list and mkisofs command.
168#
169
170ifdef VBOX_WITH_ADDITIONS_ISO.freebsd.amd64
171 VBOX_PATH_ADDITIONS.freebsd.amd64 = $(PATH_OUT_BASE)/freebsd.amd64/$(KBUILD_TYPE)/bin/additions
172 GUESTADDITIONS_FILESPEC.freebsd.amd64 = \
173 VBoxFreeBSDAdditions-amd64.tbz=$(VBOX_PATH_ADDITIONS.freebsd.amd64)/VBoxFreeBSDAdditions.tbz
174endif
175ifdef VBOX_WITH_ADDITIONS_ISO.freebsd.x86
176 VBOX_PATH_ADDITIONS.freebsd.x86 = $(PATH_OUT_BASE)/freebsd.x86/$(KBUILD_TYPE)/bin/additions
177 GUESTADDITIONS_FILESPEC.freebsd.x86 = \
178 VBoxFreeBSDAdditions-x86.tbz=$(VBOX_PATH_ADDITIONS.freebsd.x86)/VBoxFreeBSDAdditions.tbz
179endif
180
181
182ifdef VBOX_WITH_ADDITIONS_ISO.os2.x86
183 VBOX_PATH_ADDITIONS.os2.x86 = $(PATH_OUT_BASE)/os2.x86/$(KBUILD_TYPE)/bin/additions
184 GUESTADDITIONS_FILESPEC.os2.x86 = \
185 32Bit/OS2/VBoxGuest.sys=$(VBOX_PATH_ADDITIONS.os2.x86)/VBoxGuest.sys \
186 32Bit/OS2/VBoxService.exe=$(VBOX_PATH_ADDITIONS.os2.x86)/VBoxService.exe \
187 32Bit/OS2/gengradd.dll=$(VBOX_PATH_ADDITIONS.os2.x86)/gengradd.dll \
188 32Bit/OS2/libc063.dll=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/libc063.dll \
189 32Bit/OS2/readme.txt=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/readme.txt \
190 32Bit/OS2/vboxmouse.sys=$(VBOX_PATH_ADDITIONS.os2.x86)/vboxmouse.sys
191else ifdef VBOX_WITH_OS2_ADDITIONS_BIN
192 GUESTADDITIONS_FILESPEC.os2.x86 = \
193 32Bit/OS2/VBoxGuest.sys=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/VBoxGuest.sys \
194 32Bit/OS2/VBoxService.exe=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/VBoxService.exe \
195 32Bit/OS2/gengradd.dll=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/gengradd.dll \
196 32Bit/OS2/libc063.dll=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/libc063.dll \
197 32Bit/OS2/readme.txt=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/readme.txt \
198 32Bit/OS2/vboxmouse.sys=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/vboxmouse.sys
199endif
200
201
202ifdef VBOX_WITH_ADDITIONS_ISO.linux.amd64
203 VBOX_PATH_ADDITIONS.linux.amd64 = $(PATH_OUT_BASE)/linux.amd64/$(KBUILD_TYPE)/bin/additions
204 ifdef VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE
205 VBOX_LNX_ADD_AMD64_RUN_PKG=VBoxLinuxAdditions.run
206 else
207 VBOX_LNX_ADD_AMD64_RUN_PKG=VBoxLinuxAdditions-amd64.run
208 endif
209 GUESTADDITIONS_FILESPEC.linux.amd64 = \
210 $(VBOX_LNX_ADD_AMD64_RUN_PKG)=$(VBOX_PATH_ADDITIONS.linux.amd64)/VBoxLinuxAdditions.run
211endif
212ifdef VBOX_WITH_ADDITIONS_ISO.linux.x86
213 VBOX_PATH_ADDITIONS.linux.x86 = $(PATH_OUT_BASE)/linux.x86/$(KBUILD_TYPE)/bin/additions
214## @todo 64-bit additions: rename this package, update docs (?) and tests (?). create wrapper? create gnome/kde autorun app (xplatform) ?
215 ifdef VBOX_WITH_COMBINED_LINUX_GUEST_PACKAGE
216 VBOX_LNX_ADD_X86_RUN_PKG=VBoxLinuxAdditions.run
217 else
218 VBOX_LNX_ADD_X86_RUN_PKG=VBoxLinuxAdditions-x86.run
219 endif
220 GUESTADDITIONS_FILESPEC.linux.x86 = \
221 $(VBOX_LNX_ADD_X86_RUN_PKG)=$(VBOX_PATH_ADDITIONS.linux.x86)/VBoxLinuxAdditions.run \
222 runasroot.sh=$(VBOX_PATH_ADDITIONS.linux.x86)/runasroot.sh \
223 autorun.sh=$(VBOX_PATH_ADDITIONS.linux.x86)/autorun.sh
224endif
225
226ifdef VBOX_WITH_ADDITIONS_ISO.solaris.amd64
227 VBOX_PATH_ADDITIONS.solaris.amd64 = $(PATH_OUT_BASE)/solaris.amd64/$(KBUILD_TYPE)/bin/additions
228 GUESTADDITIONS_FILESPEC.solaris.amd64 = \
229 VBoxSolarisAdditions-amd64.pkg=$(VBOX_PATH_ADDITIONS.solaris.amd64)/VBoxSolarisAdditions.pkg
230endif
231ifdef VBOX_WITH_ADDITIONS_ISO.solaris.x86
232 VBOX_PATH_ADDITIONS.solaris.x86 = $(PATH_OUT_BASE)/solaris.x86/$(KBUILD_TYPE)/bin/additions
233 GUESTADDITIONS_FILESPEC.solaris.x86 = \
234 VBoxSolarisAdditions-x86.pkg=$(VBOX_PATH_ADDITIONS.solaris.x86)/VBoxSolarisAdditions.pkg
235endif
236ifdef VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE
237 # Build combined 32bit and 64bit solaris additions, not just a single arch.
238 # This assumes that the 32bit build directory contains the combined additions
239 # for 32bit and 64bit solaris. This just modifies variables set above.
240 GUESTADDITIONS_FILESPEC.solaris.x86 = \
241 VBoxSolarisAdditions.pkg=$(VBOX_PATH_ADDITIONS.solaris.x86)/VBoxSolarisAdditions.pkg
242 GUESTADDITIONS_FILESPEC.solaris.amd64 =
243endif
244
245ifdef VBOX_WITH_ADDITIONS_ISO.win.amd64
246 VBOX_PATH_ADDITIONS.win.amd64 = $(PATH_OUT_BASE)/win.amd64/$(KBUILD_TYPE)/bin/additions
247 GUESTADDITIONS_FILESPEC.win.amd64 = \
248 VBoxWindowsAdditions-amd64.exe=$(VBOX_PATH_ADDITIONS.win.amd64)/VBoxWindowsAdditions-amd64.exe
249endif
250
251ifdef VBOX_WITH_ADDITIONS_ISO.win.x86
252 VBOX_PATH_ADDITIONS.win.x86 = $(PATH_OUT_BASE)/win.x86/$(KBUILD_TYPE)/bin/additions
253 GUESTADDITIONS_FILESPEC.win.x86 = \
254 VBoxWindowsAdditions-x86.exe=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxWindowsAdditions-x86.exe \
255 VBoxWindowsAdditions.exe=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxWindowsAdditions.exe \
256 AUTORUN.INF=$(VBOX_PATH_ADDITIONS_SRC)/WINNT/Installer/ISO/AUTORUN.INF \
257 32Bit/Readme.txt=$(VBOX_PATH_ADDITIONS_SRC)/WINNT/Installer/ISO/ReadmeDrivers.txt \
258 64Bit/Readme.txt=$(VBOX_PATH_ADDITIONS_SRC)/WINNT/Installer/ISO/ReadmeDrivers.txt
259endif # win.x86
260
261ifdef VBOX_WITH_ADDITIONS_ISO.darwin.x86
262 VBOX_PATH_ADDITIONS.darwin.x86 = $(PATH_OUT_BASE)/darwin.x86/$(KBUILD_TYPE)/bin/additions
263 # or dmg?
264 GUESTADDITIONS_FILESPEC.darwin.x86 = \
265 VBoxDarwinAdditions-x86.run=$(VBOX_PATH_ADDITIONS.darwin.x86)/VBoxDarwinAdditions-x86.run
266endif
267
268ifdef VBOX_WITH_ADDITIONS_ISO.darwin.amd64
269 VBOX_PATH_ADDITIONS.darwin.amd64 = $(PATH_OUT_BASE)/darwin.amd64/$(KBUILD_TYPE)/bin/additions
270 GUESTADDITIONS_FILESPEC.darwin.amd64 = \
271 VBoxDarwinAdditions-amd64.run=$(VBOX_PATH_ADDITIONS.darwin.amd64)/VBoxDarwinAdditions-amd64.run
272endif
273
274#
275# Build the Guest Additions ISO image.
276#
277ifndef VBOX_WITHOUT_ADDITIONS_ISO
278$(VBOX_PATH_ADDITIONS_ISO)/VBoxGuestAdditions.iso: \
279 $(filter-out %=deleteme=,\
280 $(subst =,=deleteme= ,\
281 $(GUESTADDITIONS_FILESPEC.win.x86) \
282 $(GUESTADDITIONS_FILESPEC.win.amd64) \
283 $(GUESTADDITIONS_FILESPEC.solaris.x86) \
284 $(GUESTADDITIONS_FILESPEC.solaris.amd64) \
285 $(GUESTADDITIONS_FILESPEC.os2.x86) \
286 $(GUESTADDITIONS_FILESPEC.linux.x86) \
287 $(GUESTADDITIONS_FILESPEC.linux.amd64) \
288 $(GUESTADDITIONS_FILESPEC.freebsd.x86) \
289 $(GUESTADDITIONS_FILESPEC.freebsd.amd64) \
290 $(GUESTADDITIONS_FILESPEC.darwin.x86) \
291 $(GUESTADDITIONS_FILESPEC.darwin.amd64) \
292 )\
293 ) \
294 $(VBOX_SVN_REV_KMK) \
295 $(VBOX_PATH_ADDITIONS_SRC)/Makefile.kmk
296 $(call MSG_TOOL,mkisofs,,$@)
297 $(QUIET)$(MKDIR) -p $(@D)
298 @# use iso-level 3 which is the most ISO conforming level with least restrictions; iso-level 4 maps to iso-level 2
299 @# with some extra restrictions removal (not conforming to ISO9660) which some platforms like Solaris 10 does not like.
300 $(VBOX_MKISOFS) -rational-rock -joliet -iso-level 3 \
301 -volid "VBOXADDITIONS_$(VBOX_VERSION_STRING)_$(VBOX_SVN_REV)" -l -graft-points -o $@ \
302 $(GUESTADDITIONS_FILESPEC.win) \
303 $(GUESTADDITIONS_FILESPEC.win.x86) \
304 $(GUESTADDITIONS_FILESPEC.win.amd64) \
305 $(GUESTADDITIONS_FILESPEC.solaris.x86) \
306 $(GUESTADDITIONS_FILESPEC.solaris.amd64) \
307 $(GUESTADDITIONS_FILESPEC.os2.x86) \
308 $(GUESTADDITIONS_FILESPEC.linux.x86) \
309 $(GUESTADDITIONS_FILESPEC.linux.amd64) \
310 $(GUESTADDITIONS_FILESPEC.freebsd.x86) \
311 $(GUESTADDITIONS_FILESPEC.freebsd.amd64) \
312 $(GUESTADDITIONS_FILESPEC.darwin.x86) \
313 $(GUESTADDITIONS_FILESPEC.darwin.amd64)
314
315
316# Alias for creating the iso.
317.PHONY: additions-iso
318additions-iso: $(VBOX_PATH_ADDITIONS_ISO)/VBoxGuestAdditions.iso
319
320endif
321
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette