VirtualBox

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

Last change on this file since 13239 was 13239, checked in by vboxsync, 16 years ago

typo

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 12.3 KB
Line 
1# $Id: Makefile.kmk 13239 2008-10-14 08:33:04Z vboxsync $
2## @file
3# Makefile for the Linux installer.
4#
5
6#
7# Copyright (C) 2006-2007 Sun Microsystems, Inc.
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# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18# Clara, CA 95054 USA or visit http://www.sun.com if you need
19# additional information or have any questions.
20#
21
22SUB_DEPTH = ../../../..
23include $(KBUILD_PATH)/subheader.kmk
24
25ifneq ($(KBUILD_HOST),linux)
26 $(error "The Linux installer can only be built on Linux!")
27endif
28
29#
30# Globals and targets.
31#
32VBOX_PATH_LNX_INST_SRC := $(PATH_SUB_CURRENT)
33VBOX_LNX_INST_OUT_DIR := $(PATH_TARGET)/Installer/linux
34VBOX_LNX_INST_STAGE_DIR := $(PATH_TARGET)/Installer/linux/install
35VBOX_LNX_DBG_PATH := usr/lib/debug/opt/VirtualBox-$(VBOX_VERSION_STRING)
36VBOX_LNX_PACKAGE_NAME = VirtualBox-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).run
37
38# Unset this to speed up things during makefile hacking.
39VBOX_LNX_INST_DEP_ON_MAKEFILE := $(MAKEFILE_CURRENT)
40
41BLDDIRS += $(VBOX_LNX_INST_OUT_DIR) $(VBOX_LNX_INST_STAGE_DIR)
42PACKING += $(PATH_BIN)/VirtualBox.tar.bz2
43if !defined(VBOX_NO_LINUX_RUN_INSTALLER) && !defined(VBOX_OSE)
44 PACKING += $(PATH_BIN)/$(VBOX_LNX_PACKAGE_NAME) \
45 $(PATH_BIN)/VirtualBox-dbg.tar.bz2
46endif
47
48OTHER_CLEAN += \
49 $(addprefix $(VBOX_LNX_INST_STAGE_DIR)/,\
50 install.sh \
51 deffiles \
52 routines.sh \
53 vboxdrv.sh \
54 vboxnet.sh \
55 VirtualBox.tar.bz2 \
56 LICENSE) \
57 $(wildcard $(VBOX_LNX_INST_OUT_DIR)/VirtualBox-*) \
58 $(VBOX_LNX_INST_OUT_DIR)/vboxdrv.sh \
59 $(VBOX_LNX_INST_OUT_DIR)/vboxnet.sh \
60 $(VBOX_LNX_INST_OUT_DIR)/install.sh
61
62#
63# Linux installs.
64#
65INSTALLS += linux-bin
66linux-bin_INST = bin/
67linux-bin_MODE = a+rx,u+w
68linux-bin_SOURCES = \
69 VBoxSysInfo.sh \
70 VBox.sh=>VBox.sh \
71 $(PATH_linux-bin)/VBoxAddIF.sh
72linux-bin_CLEAN = \
73 $(PATH_linux-bin)/VBoxAddIF.sh
74
75$$(PATH_linux-bin)/VBoxAddIF.sh: $(PATH_SUB_CURRENT)/VBoxAddIF.sh $(VBOX_VERSION_STAMP) | $$(dir $$@)
76 $(call MSG_GENERATE,,$@,$<)
77 $(QUIET)$(SED) -e "s;_VERSION_;$(VBOX_VERSION_STRING);g" --output $@ $<
78
79INSTALLS += linux-misc
80linux-misc_INST = bin/
81linux-misc_MODE = a+r,u+w
82linux-misc_SOURCES = \
83 $(PATH_ROOT)/src/VBox/Frontends/VirtualBox/images/$(if $(VBOX_OSE),OSE,NonOSE)/VirtualBox_32px.png=>VBox.png \
84 $(if $(VBOX_OSE),,$(VBOX_BRAND_LICENSE_TXT)=>LICENSE) \
85 $(if $(VBOX_WITH_QT4GUI),$(PATH_linux-misc)/VirtualBox.desktop,)
86
87$$(PATH_linux-misc)/VirtualBox.desktop: $(PATH_SUB_CURRENT)/VirtualBox.desktop $(VBOX_VERSION_STAMP) | $$(dir $$@)
88 $(call MSG_GENERATE,,$@,$<)
89ifdef VBOX_PATH_PACKAGE_DOCS
90 $(QUIET)$(SED) -e "s+\$$VBOX_DOC_PATH+$(VBOX_PATH_PACKAGE_DOCS)+" --output $@ $<
91else
92 $(QUIET)$(SED) -e "s+\$$VBOX_DOC_PATH+/opt/VirtualBox-$(VBOX_VERSION_STRING)+" --output $@ $<
93endif
94
95
96
97#
98# The files residing in bin/ that we'll ship.
99#
100
101# Strip these binaries
102VBOX_LNX_STRIP_BIN = \
103 VBoxDD.so \
104 VBoxDD2.so \
105 $(if $(VBOX_WITH_FFMPEG),VBoxFFmpegFB.so,) \
106 VBoxManage \
107 VBoxREM.so \
108 VBoxRT.so \
109 $(if $(VBOX_WITH_VBOXSDL),VBoxSDL $(if $(VBOX_WITH_HARDENING),VBoxSDL.so),) \
110 VBoxSettings.so \
111 VBoxSharedClipboard.so \
112 VBoxSharedFolders.so \
113 $(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestPropSvc.so) \
114 VBoxSVC \
115 VBoxDDU.so \
116 VBoxVMM.so \
117 VBoxXPCOM.so \
118 VBoxXPCOMIPCD \
119 $(if $(VBOX_WITH_PYTHON),VBoxPython.so,) \
120 VBoxTunctl \
121 components/VBoxC.so \
122 components/VBoxSVCM.so \
123 components/VBoxXPCOMIPCC.so \
124 $(if $(VBOX_OSE),,VRDPAuth.so)
125
126
127# Do not remove relocation information of these binaries
128VBOX_LNX_STRIP_OBJ = \
129 VBoxDD2GC.gc \
130 VBoxDD2R0.r0 \
131 VBoxDDGC.gc \
132 VBoxDDR0.r0 \
133 VMMGC.gc \
134 VMMR0.r0
135ifeq ($(KBUILD_TARGET_ARCH),amd64)
136 VBOX_LNX_STRIP_OBJ += \
137 VBoxREM2.rel
138endif
139
140# Do not strip anything of these files
141VBOX_LNX_NO_STRIP = \
142 $(if $(VBOX_OSE),,LICENSE) \
143 components/VBoxXPCOMBase.xpt \
144 components/VirtualBox_XPCOM.xpt \
145 VBoxSysInfo.sh \
146 VBox.sh \
147 VBox.png \
148 VBoxAddIF.sh \
149 src
150
151# Qt4 GUI
152ifdef VBOX_WITH_QT4GUI
153 include $(PATH_ROOT)/src/VBox/Frontends/VirtualBox4/nls/ApprovedLanguages.kmk
154 VBOX_LNX_STRIP_BIN += \
155 VBoxKeyboard.so \
156 VirtualBox \
157 $(if $(VBOX_WITH_HARDENING),VirtualBox.so) \
158 $(if $(VBOX_WITH_DEBUGGER_GUI),VBoxDbg.so)
159 VBOX_LNX_NO_STRIP += \
160 VirtualBox.desktop \
161 $(if $(VBOX_OSE),,License-$(VBOX_LICENSE_VER).html) \
162 $(if $(VBOX_WITH_QT4_SUN),$(notdir $(wildcard $(PATH_BIN)/libVBox*)),) \
163 $(if $(VBOX_WITH_QT4_SUN),accessible/libqtaccessiblewidgets.so,) \
164 $(foreach f,$(VBOX_APPROVED_GUI_LANGUAGES),nls/VirtualBox_$(f).qm nls/qt_$(f).qm)
165endif
166
167# Guest Additions
168ifdef VBOX_WITH_ADDITIONS_PACKING
169 VBOX_LNX_NO_STRIP += \
170 additions/VBoxGuestAdditions.iso
171endif
172
173
174# Documentation
175ifdef VBOX_WITH_DOCS_PACKING
176 VBOX_LNX_NO_STRIP += \
177 $(notdir $(wildcard $(PATH_BIN)/UserManual*.pdf)) \
178 $(notdir $(wildcard $(PATH_BIN)/VirtualBox*.chm))
179 VBOX_LNX_STRIP_BIN += \
180 $(if $(VBOX_WITH_KCHMVIEWER),kchmviewer,)
181endif
182
183# VRDP
184ifdef VBOX_WITH_VRDP
185 VBOX_LNX_STRIP_BIN += \
186 VBoxVRDP.so
187 VBOX_LNX_NO_STRIP += \
188 rdesktop-vrdp.tar.gz
189 ifdef VBOX_WITH_VRDP_RDESKTOP
190 VBOX_LNX_NO_STRIP += \
191 rdesktop-vrdp-keymaps
192 VBOX_LNX_STRIP_BIN += \
193 rdesktop-vrdp
194 endif
195endif
196
197# Headless
198ifdef VBOX_WITH_HEADLESS
199 VBOX_LNX_STRIP_BIN += \
200 VBoxHeadless \
201 $(if $(VBOX_WITH_HARDENING),VBoxHeadless.so)
202endif
203
204# Webservices
205ifdef VBOX_WITH_WEBSERVICES
206 VBOX_LNX_STRIP_BIN += \
207 vboxwebsrv \
208 webtest
209endif
210
211#
212# All the bin files that goes into the archives.
213#
214VBOX_LNX_ARCH_FILES := $(VBOX_LNX_STRIP_BIN) $(VBOX_LNX_STRIP_OBJ) $(VBOX_LNX_NO_STRIP)
215
216# Cleanup of the files we copy/symlink from bin.
217OTHER_CLEAN += $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/,$(VBOX_LNX_ARCH_FILES)) \
218 $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/,$(VBOX_LNX_STRIP_BIN))
219
220
221#
222# The generic installer.
223#
224$(PATH_BIN)/$(VBOX_LNX_PACKAGE_NAME): \
225 $(VBOX_LNX_INST_STAGE_DIR)/VirtualBox.tar.bz2 \
226 $(VBOX_VERSION_STAMP) \
227 $(VBOX_PATH_LNX_INST_SRC)/routines.sh \
228 $(VBOX_PATH_LNX_INST_SRC)/deffiles \
229 $(if $(VBOX_OSE),,$(VBOX_BRAND_LICENSE_TXT)) \
230 $(VBOX_LNX_INST_OUT_DIR)/vboxnet.sh \
231 $(VBOX_LNX_INST_OUT_DIR)/vboxdrv.sh \
232 $(VBOX_LNX_INST_OUT_DIR)/install.sh
233 $(call MSG_TOOL,makeself,,$@)
234 $(QUIET)$(RM) -f $(wildcard $(PATH_BIN)/VirtualBox-*.run)
235 $(QUIET)$(INSTALL) -m 0755 $(VBOX_PATH_LNX_INST_SRC)/routines.sh $(VBOX_LNX_INST_STAGE_DIR)/
236 $(QUIET)$(INSTALL) -m 0755 $(VBOX_PATH_LNX_INST_SRC)/deffiles $(VBOX_LNX_INST_STAGE_DIR)/
237 $(QUIET)$(if $(VBOX_OSE),,$(INSTALL) -m 0644 $(VBOX_BRAND_LICENSE_TXT) $(VBOX_LNX_INST_STAGE_DIR)/LICENSE)
238 $(QUIET)$(INSTALL) -m 0755 $(VBOX_LNX_INST_OUT_DIR)/vboxnet.sh $(VBOX_LNX_INST_STAGE_DIR)/
239 $(QUIET)$(INSTALL) -m 0755 $(VBOX_LNX_INST_OUT_DIR)/vboxdrv.sh $(VBOX_LNX_INST_STAGE_DIR)/
240 $(QUIET)$(INSTALL) -m 0755 $(VBOX_LNX_INST_OUT_DIR)/install.sh $(VBOX_LNX_INST_STAGE_DIR)/
241 $(QUIET)$(RM) -f $@
242 $(QUIET)$(VBOX_MAKESELF) --follow --nocomp $(VBOX_LNX_INST_STAGE_DIR) $@ \
243 "VirtualBox for Linux installation" ./install.sh "\$$0 1> /dev/null"
244
245# files that needs editing before they can be included in the generic installer.
246$(VBOX_LNX_INST_OUT_DIR)/vboxdrv.sh: $(VBOX_PATH_LNX_INST_SRC)/vboxdrv.sh.in | $$(dir $$@)
247 $(QUIET)$(SED_EXT) -e "s|%NOLSB%|yes|g; s|%PACKAGE%|virtualbox|g" --output $@ $<
248
249$(VBOX_LNX_INST_OUT_DIR)/vboxnet.sh: $(VBOX_PATH_LNX_INST_SRC)/vboxnet.sh.in | $$(dir $$@)
250 $(QUIET)$(SED_EXT) -e "s|%NOLSB%|yes|g" --output $@ $<
251
252$(VBOX_LNX_INST_OUT_DIR)/install.sh: $(VBOX_PATH_LNX_INST_SRC)/install.sh | $$(dir $$@)
253 $(QUIET)$(SED) \
254 -e "s;_VERSION_;$(VBOX_VERSION_STRING);g" \
255 -e "s;_BUILD_;$(date-utc );g" \
256 -e "s;_ARCH_;$(KBUILD_TARGET_ARCH);g" \
257 -e "s;_HARDENED_;$(VBOX_WITH_HARDENING);g" \
258 --output $@ \
259 $<
260
261#
262# .tar.bz2 for converting into .run
263#
264$(VBOX_LNX_INST_STAGE_DIR)/VirtualBox.tar.bz2: \
265 $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/, $(VBOX_LNX_ARCH_FILES)) \
266 $(VBOX_LNX_INST_DEP_ON_MAKEFILE) \
267 $(VBOX_VERSION_STAMP)
268 $(call MSG_L1,Packing $@)
269 $(QUIET)$(RM) -f -- $@ $(patsubst %.bz2,%,$@)
270 $(QUIET)$(MKDIR) -p $(@D)
271ifdef VBOX_USE_PBZIP2
272 $(QUIET)tar --owner 0 --group 0 -cRhf $(patsubst %.bz2,%,$@) -C $(VBOX_LNX_INST_OUT_DIR)/archive $(VBOX_LNX_ARCH_FILES)
273 $(QUIET)pbzip2 $(patsubst %.bz2,%,$@)
274else
275 $(QUIET)tar --owner 0 --group 0 -cjRhf $@ -C $(VBOX_LNX_INST_OUT_DIR)/archive $(VBOX_LNX_ARCH_FILES)
276endif
277 $(QUIET)$(CHMOD) 0644 $@
278
279#
280# .tar.bz2 for distribution with the files under VirtualBox-<ver>/.
281#
282$(PATH_BIN)/VirtualBox.tar.bz2: \
283 $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/, $(VBOX_LNX_ARCH_FILES)) \
284 $(VBOX_LNX_INST_DEP_ON_MAKEFILE) \
285 $(VBOX_VERSION_STAMP)
286 $(call MSG_L1,Packing $@)
287 $(QUIET)$(RM) -f -- $(VBOX_LNX_INST_OUT_DIR)/VirtualBox-$(VBOX_VERSION_STRING) $@ $(patsubst %.bz2,%,$@)
288 $(QUIET)$(LN_SYMLINK) $(VBOX_LNX_INST_OUT_DIR)/archive/ $(VBOX_LNX_INST_OUT_DIR)/VirtualBox-$(VBOX_VERSION_STRING)
289ifdef VBOX_USE_PBZIP2
290 $(QUIET)tar --owner 0 --group 0 -cRhf $(patsubst %.bz2,%,$@) -C $(VBOX_LNX_INST_OUT_DIR) \
291 $(addprefix VirtualBox-$(VBOX_VERSION_STRING)/,$(VBOX_LNX_ARCH_FILES))
292 $(QUIET)pbzip2 $(patsubst %.bz2,%,$@)
293else
294 $(QUIET)tar --owner 0 --group 0 -cjRhf $@ -C $(VBOX_LNX_INST_OUT_DIR) \
295 $(addprefix VirtualBox-$(VBOX_VERSION_STRING)/,$(VBOX_LNX_ARCH_FILES))
296endif
297 $(QUIET)$(RM) -f -- $(VBOX_LNX_INST_OUT_DIR)/VirtualBox-$(VBOX_VERSION_STRING)
298
299
300# pattern rule for stripping and copying the VBOX_LNX_STRIP_BIN files to archive/
301$(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/,$(VBOX_LNX_STRIP_BIN)): \
302 $(VBOX_LNX_INST_OUT_DIR)/archive/% : $(PATH_BIN)/% \
303 $(if $(VBOX_NO_LINUX_RUN_INSTALLER),,\
304 $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/%) \
305 | $$(dir $$@)
306 $(call MSG_INST_FILE,$<,$@)
307 $(QUIET)$(INSTALL) -m 0755 $(if $(VBOX_DO_STRIP),-s,) $< $@
308 $(QUIET)$(if $(VBOX_NO_LINUX_RUN_INSTALLER),,objcopy --add-gnu-debuglink=$(subst $(VBOX_LNX_INST_OUT_DIR)/archive,$(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH),$@) $@)
309
310# pattern rule for striping and copying the VBOX_LNX_STRIP_OBJ files to archive/
311$(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/,$(VBOX_LNX_STRIP_OBJ)): \
312 $(VBOX_LNX_INST_OUT_DIR)/archive/% : $(PATH_BIN)/% | $$(dir $$@)
313 $(call MSG_INST_FILE,$<,$@)
314ifeq ($(VBOX_DO_STRIP),)
315 $(QUIET)$(INSTALL) -m 0644 $< $@
316else # strip to temp file because of umask.
317 $(QUIET)objcopy --strip-unneeded -R .comment $< [email protected]
318 $(QUIET)$(INSTALL) -m 0644 [email protected] $@
319 $(QUIET)$(RM) -f -- [email protected]
320endif
321
322# pattern rule for linking the VBOX_LNX_NO_STRIP into archive/
323$(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/,$(VBOX_LNX_NO_STRIP)): \
324 $(VBOX_LNX_INST_OUT_DIR)/archive/% : $(PATH_BIN)/% | $$(dir $$@)
325 $(call MSG_INST_SYM,$<,$@)
326 $(QUIET)$(RM) -f $@
327 $(QUIET)$(LN_SYMLINK) $< $@
328
329# rules for creating directories in archive (the pattern rules depends on these). ## @todo use BLDDIRS
330BLDDIRS += $(foreach d,\
331 archive \
332 archive/components \
333 archive/nls \
334 $(if $(VBOX_WITH_QT4_SUN),archive/accessible,) \
335 archive/additions \
336 install\
337,$(VBOX_LNX_INST_OUT_DIR)/$(d)/)
338
339
340#
341# .tar.bz2 for with the debug info.
342#
343$(PATH_BIN)/VirtualBox-dbg.tar.bz2: \
344 $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/, $(VBOX_LNX_STRIP_BIN))
345 $(call MSG_L1,Packing $@)
346 $(QUIET)$(RM) -f -- $@ $(patsubst %.bz2,%,$@)
347ifdef VBOX_USE_PBZIP2
348 $(QUIET)tar --owner 0 --group 0 -cRhf $(patsubst %.bz2,%,$@) -C $(VBOX_LNX_INST_OUT_DIR)/archive-dbg \
349 $(addprefix $(VBOX_LNX_DBG_PATH)/,$(VBOX_LNX_STRIP_BIN))
350 $(QUIET)pbzip2 $(patsubst %.bz2,%,$@)
351else
352 $(QUIET)tar --owner 0 --group 0 -cjRhf $@ -C $(VBOX_LNX_INST_OUT_DIR)/archive-dbg \
353 $(addprefix $(VBOX_LNX_DBG_PATH)/,$(VBOX_LNX_STRIP_BIN))
354endif
355
356# pattern rule for copying the debug info from the VBOX_LNX_STRIP_BIN files into archive-dbg/$(VBOX_LNX_DBG_PATH)/
357$(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/,$(VBOX_LNX_STRIP_BIN)): \
358 $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/% : $(PATH_BIN)/% | $$(dir $$@)
359 $(call MSG_TOOL,copydbg,$<,$@)
360 $(QUIET)objcopy --only-keep-debug $< $@
361
362# rules for creating directories in archive-dbg (the pattern rules depends on these). ## @todo use BLDDIRS
363BLDDIRS += $(foreach d,\
364 $(VBOX_LNX_DBG_PATH) \
365 $(VBOX_LNX_DBG_PATH)/components \
366,$(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(d)/)
367
368include $(KBUILD_PATH)/subfooter.kmk
369
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