# $Id: Makefile.kmk 45775 2013-04-26 12:34:31Z vboxsync $ ## @file # Makefile for the Linux installer. # # # Copyright (C) 2006-2013 Oracle Corporation # # This file is part of VirtualBox Open Source Edition (OSE), as # available from http://www.virtualbox.org. This file is free software; # you can redistribute it and/or modify it under the terms of the GNU # General Public License (GPL) as published by the Free Software # Foundation, in version 2 as it comes in the "COPYING" file of the # VirtualBox OSE distribution. VirtualBox OSE is distributed in the # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. # SUB_DEPTH = ../../../.. include $(KBUILD_PATH)/subheader.kmk # Include sub-makefiles. include $(PATH_SUB_CURRENT)/install_service/Makefile.kmk ifdef VBOX_WITH_TESTCASES include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk endif ifneq ($(KBUILD_HOST),linux) $(error "The Linux installer can only be built on Linux!") endif # # Globals and targets. # VBOX_PATH_LNX_INST_SRC := $(PATH_SUB_CURRENT) VBOX_LNX_INST_OUT_DIR := $(PATH_TARGET)/Installer/linux VBOX_LNX_INST_STAGE_DIR := $(PATH_TARGET)/Installer/linux/install VBOX_LNX_INST_STAGE_DIR_REL := obj/Installer/linux/install VBOX_LNX_DBG_PATH := usr/lib/debug/opt/VirtualBox VBOX_LNX_PACKAGE_NAME = VirtualBox-$(VBOX_VERSION_STRING)-r$(VBOX_SVN_REV).run # Unset this to speed up things during makefile hacking. VBOX_LNX_INST_DEP_ON_MAKEFILE := $(MAKEFILE_CURRENT) BLDDIRS += $(VBOX_LNX_INST_OUT_DIR) $(VBOX_LNX_INST_STAGE_DIR) PACKING += $(PATH_STAGE_BIN)/VirtualBox.tar.bz2 if !defined(VBOX_NO_LINUX_RUN_INSTALLER) PACKING += $(PATH_STAGE_BIN)/$(VBOX_LNX_PACKAGE_NAME) \ $(PATH_STAGE_BIN)/VirtualBox-dbg.tar.bz2 endif OTHER_CLEAN += \ $(addprefix $(VBOX_LNX_INST_STAGE_DIR)/,\ install.sh \ vboxdrv.sh \ VirtualBox.tar.bz2 \ LICENSE) \ $(wildcard $(VBOX_LNX_INST_OUT_DIR)/VirtualBox-*) \ $(addprefix $(VBOX_LNX_INST_OUT_DIR)/,\ vboxdrv.sh \ install.sh) # # Linux installs. # INSTALLS += linux-bin linux-bin_INST = bin/ linux-bin_MODE = a+rx,u+w linux-bin_SOURCES = \ scripts/install.sh=>scripts/install.sh \ scripts/VBoxHeadlessXOrg.sh=>scripts/VBoxHeadlessXOrg.sh \ VBoxSysInfo.sh \ VBoxCreateUSBNode.sh \ VBox.sh=>VBox.sh \ $(if $(VBOX_WITH_PYTHON),$(PATH_ROOT)/src/VBox/Frontends/VBoxShell/vboxshell.py=>vboxshell.py,) INSTALLS += linux-scripts linux-scripts_INST = $(VBOX_LNX_INST_STAGE_DIR_REL)/ linux-scripts_MODE = a+rx,u+w linux-scripts_SOURCES = \ deffiles \ routines.sh \ uninstall.sh \ vboxautostart-service.sh \ vboxballoonctrl-service.sh \ vboxdrv-pardus.py \ vboxweb-service.sh INSTALLS += linux-misc linux-misc_INST = bin/ linux-misc_MODE = a+r,u+w linux-misc_SOURCES = \ $(PATH_ROOT)/src/VBox/Frontends/VirtualBox/images/$(if $(VBOX_OSE),OSE,NonOSE)/VirtualBox_32px.png=>VBox.png \ $(PATH_ROOT)/src/VBox/Installer/common/virtualbox.xml \ $(if $(VBOX_OSE),,$(VBOX_BRAND_LICENSE_TXT)=>LICENSE) \ $(linux-misc_0_OUTDIR)/generated.sh=>scripts/generated.sh \ $(if $(VBOX_WITH_QTGUI),$(linux-misc_0_OUTDIR)/virtualbox.desktop,) linux-misc_CLEAN = \ $(linux-misc_0_OUTDIR)/generated.sh \ $(linux-misc_0_OUTDIR)/virtualbox.desktop $$(linux-misc_0_OUTDIR)/generated.sh: $(VBOX_VERSION_STAMP) $(VBOX_LNX_INST_DEP_ON_MAKEFILE) | $$(dir $$@) $(call MSG_GENERATE,,$@,$<) $(QUIET)$(RM) -f '$@' $(QUIET)$(APPEND) '$@' 'VBOX_PRODUCT="$(VBOX_PRODUCT)"' $(QUIET)$(APPEND) '$@' 'VBOX_VERSION_STRING="$(VBOX_VERSION_STRING)"' $(QUIET)$(APPEND) '$@' 'VBOX_C_YEAR="$(VBOX_C_YEAR)"' $(QUIET)$(APPEND) '$@' 'VBOX_VENDOR="$(VBOX_VENDOR)"' $$(linux-misc_0_OUTDIR)/virtualbox.desktop: $(PATH_ROOT)/src/VBox/Installer/common/virtualbox.desktop.in $(VBOX_VERSION_STAMP) | $$(dir $$@) $(call MSG_GENERATE,,$@,$<) ifdef VBOX_PATH_PACKAGE_DOCS $(QUIET)$(SED) -e "s+@VBOX_DOC_PATH@+$(VBOX_PATH_PACKAGE_DOCS)+" \ -e "s+@VBOX_PRODUCT@+$(VBOX_PRODUCT)+" \ --output $@ $< else $(QUIET)$(SED) -e "s+@VBOX_DOC_PATH@+/opt/VirtualBox+" \ -e "s+@VBOX_PRODUCT@+$(VBOX_PRODUCT)+" \ --output $@ $< endif INSTALLS += linux-icons linux-icons_INST = bin/icons/ linux-icons_MODE = a+r,u+w linux-icons_SOURCES = $(VBOX_MIME_ICONS) $(VBOX_DESKTOP_ICONS) # # The files residing in bin/ that we'll ship. # # Strip these binaries VBOX_LNX_STRIP_BIN = \ VBoxDD.so \ VBoxDD2.so \ VBoxREM.so \ VBoxDDU.so \ VBoxVMM.so \ $(if $(eq $(KBUILD_TARGET_ARCH),x86),VBoxREM32.so,) \ $(if $(eq $(KBUILD_TARGET_ARCH),x86),VBoxREM64.so,) \ VBoxRT.so \ $(if $(VBOX_WITH_VBOXSDL),VBoxSDL $(if $(VBOX_WITH_HARDENING),VBoxSDL.so),) \ $(if $(VBOX_WITH_SHARED_CLIPBOARD), VBoxSharedClipboard.so,) \ $(if $(VBOX_WITH_SHARED_FOLDERS), VBoxSharedFolders.so,) \ $(if $(VBOX_WITH_GUEST_PROPS),VBoxGuestPropSvc.so,) \ $(if $(VBOX_WITH_GUEST_CONTROL),VBoxGuestControlSvc.so,) \ VBoxHostChannel.so \ $(if $(VBOX_WITH_DRAG_AND_DROP),VBoxDragAndDropSvc.so,) \ $(if $(VBOX_WITH_MAIN), \ VBoxAutostart \ VBoxBalloonCtrl \ VBoxManage \ VBoxNetDHCP $(if $(VBOX_WITH_HARDENING),VBoxNetDHCP.so,) \ VBoxNetAdpCtl \ $(if $(VBOX_WITH_DEVMAPPER),VBoxVolInfo,) \ VBoxSVC \ VBoxXPCOM.so \ VBoxXPCOMC.so \ VBoxXPCOMIPCD \ components/VBoxXPCOMIPCC.so \ components/VBoxSVCM.so \ components/VBoxC.so,) \ $(if $(VBOX_WITH_CROGL),\ VBoxOGLhostcrutil.so \ VBoxOGLhosterrorspu.so \ VBoxOGLrenderspu.so \ $(if $(VBOX_WITH_QTGUI),VBoxTestOGL,) \ VBoxSharedCrOpenGL.so,) \ $(if $(VBOX_WITH_PYTHON),$(notdir $(wildcard $(PATH_STAGE_BIN)/VBoxPython*.so)),) \ $(if $(VBOX_WITH_JXPCOM),libvboxjxpcom.so,) \ $(if $(and $(VBOX_WITH_EXTPACK_VNC),$(VBOX_WITHOUT_EXTPACK_VNC_PACKING)), \ ExtensionPacks/VNC/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/VBoxVNC.so \ ExtensionPacks/VNC/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/VBoxVNCMain.so,) \ VBoxTunctl \ helpers/generate_service_file # Do not remove relocation information of these binaries VBOX_LNX_STRIP_OBJ = \ VBoxDD2R0.r0 \ VBoxDDR0.r0 \ VMMR0.r0 ifdef VBOX_WITH_RAW_MODE VBOX_LNX_STRIP_OBJ += \ VBoxDD2GC.gc \ VBoxDDGC.gc \ VMMGC.gc endif # Do not strip anything of these files VBOX_LNX_NO_STRIP = \ $(if $(VBOX_OSE),,LICENSE) \ $(if $(VBOX_WITH_MAIN), \ components/VBoxXPCOMBase.xpt \ components/VirtualBox_XPCOM.xpt) \ $(if $(VBOX_WITH_PYTHON),vboxshell.py,) \ $(if $(and $(VBOX_WITH_EXTPACK_VNC),$(VBOX_WITHOUT_EXTPACK_VNC_PACKING)), \ ExtensionPacks/VNC/ExtPack.xml \ ExtensionPacks/VNC/ExtPack-license.html \ ExtensionPacks/VNC/ExtPack-license.rtf \ ExtensionPacks/VNC/ExtPack-license.txt,) \ VBoxSysInfo.sh \ VBoxCreateUSBNode.sh \ VBox.sh \ VBox.png \ scripts ifdef VBOX_WITH_EXTPACK VBOX_LNX_STRIP_BIN += \ VBoxExtPackHelperApp endif # Qt4 GUI ifdef VBOX_WITH_QTGUI include $(PATH_ROOT)/src/VBox/Frontends/VirtualBox/nls/ApprovedLanguages.kmk VBOX_LNX_STRIP_BIN += \ VBoxKeyboard.so \ VirtualBox \ $(if $(VBOX_WITH_HARDENING),VirtualBox.so) \ $(if $(VBOX_WITH_DEBUGGER_GUI),VBoxDbg.so) VBOX_LNX_NO_STRIP += \ virtualbox.desktop \ virtualbox.xml \ $(VBOX_LICENSE_FILES) \ $(if $(VBOX_WITH_QT4_SUN),$(notdir $(wildcard $(PATH_STAGE_BIN)/lib*VBox*)),) \ $(if $(VBOX_WITH_QT4_SUN),accessible/libqtaccessiblewidgets.so,) \ $(foreach f,$(VBOX_APPROVED_GUI_LANGUAGES),nls/VirtualBox_$(f).qm nls/qt_$(f).qm) \ icons endif # Guest Additions ifdef VBOX_WITH_ADDITIONS_PACKING VBOX_LNX_NO_STRIP += \ additions/VBoxGuestAdditions.iso endif # Documentation ifdef VBOX_WITH_DOCS_PACKING VBOX_LNX_NO_STRIP += \ UserManual.pdf \ $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),UserManual_$(f).pdf) ifdef VBOX_WITH_DOCS_CHM VBOX_LNX_NO_STRIP += \ VirtualBox.chm \ $(foreach f,$(VBOX_MANUAL_ADD_LANGUAGES),VirtualBox_$(f).chm) endif VBOX_LNX_STRIP_BIN += \ $(if $(VBOX_WITH_KCHMVIEWER),kchmviewer,) endif # auth stuff VBOX_LNX_STRIP_BIN += \ $(if $(VBOX_WITH_PAM),VBoxAuth.so,) \ VBoxAuthSimple.so # VRDP ifdef VBOX_WITH_VRDP ifndef VBOX_WITH_EXTPACK_PUEL VBOX_LNX_STRIP_BIN += \ VBoxVRDP.so endif ifdef VBOX_WITH_VRDP_RDESKTOP VBOX_LNX_NO_STRIP += \ rdesktop-vrdp.tar.gz VBOX_LNX_NO_STRIP += \ rdesktop-vrdp-keymaps VBOX_LNX_STRIP_BIN += \ rdesktop-vrdp endif endif # Python XPCOM glue ifdef VBOX_WITH_PYTHON VBOX_LNX_NO_STRIP += \ $(foreach f,$(notdir $(wildcard $(PATH_STAGE_BIN)/sdk/bindings/xpcom/python/xpcom/*.py)),sdk/bindings/xpcom/python/xpcom/$(f)) \ sdk/bindings/xpcom/python/xpcom/client/__init__.py \ sdk/bindings/xpcom/python/xpcom/server/__init__.py \ sdk/bindings/xpcom/python/xpcom/server/enumerator.py \ sdk/bindings/xpcom/python/xpcom/server/factory.py \ sdk/bindings/xpcom/python/xpcom/server/loader.py \ sdk/bindings/xpcom/python/xpcom/server/module.py \ sdk/bindings/xpcom/python/xpcom/server/policy.py \ sdk/installer/vboxapisetup.py \ sdk/installer/vboxapi/__init__.py \ sdk/installer/vboxapi/VirtualBox_constants.py endif # Java XPCOM bridge ifdef VBOX_WITH_JXPCOM VBOX_LNX_NO_STRIP += \ sdk/bindings/xpcom/java/vboxjxpcom.jar endif # Headless ifdef VBOX_WITH_HEADLESS VBOX_LNX_STRIP_BIN += \ VBoxHeadless \ $(if $(VBOX_WITH_HARDENING),VBoxHeadless.so) endif # Webservices ifdef VBOX_WITH_WEBSERVICES VBOX_LNX_STRIP_BIN += \ vboxwebsrv \ webtest endif # EFI firmware ifdef VBOX_WITH_EFIFW_PACKING VBOX_LNX_NO_STRIP += \ VBoxEFI32.fd \ VBoxEFI64.fd endif VBOX_MIME_ICONS = \ $(addprefix $(PATH_ROOT)/src/VBox/Resources/other/,\ $(foreach f,ova ovf vbox vbox-extpack vdi vmdk vhd hdd, \ $(foreach s,16 20 24 32 48 64 72 96 128 256,\ virtualbox-$(f)-$(s)px.png=>$(s)x$(s)/virtualbox-$(f).png))) VBOX_DESKTOP_ICONS = \ $(addprefix $(PATH_ROOT)/src/VBox/Resources/$(if $(VBOX_OSE),OSE,NonOSE)/,\ $(foreach s,16 20 32 40 48 64 128,\ virtualbox-$(s)px.png=>$(s)x$(s)/virtualbox.png)) # # All the bin files that goes into the archives. # VBOX_LNX_ARCH_FILES := $(VBOX_LNX_STRIP_BIN) $(VBOX_LNX_STRIP_OBJ) $(VBOX_LNX_NO_STRIP) src # Cleanup of the files we copy/symlink from bin. OTHER_CLEAN += $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/,$(VBOX_LNX_ARCH_FILES)) \ $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/,$(VBOX_LNX_STRIP_BIN)) # # The generic installer. # $(PATH_STAGE_BIN)/$(VBOX_LNX_PACKAGE_NAME): \ $(VBOX_LNX_INST_STAGE_DIR)/VirtualBox.tar.bz2 \ $(VBOX_VERSION_STAMP) \ $(if $(VBOX_OSE),,$(VBOX_BRAND_LICENSE_TXT)) \ $(VBOX_LNX_INST_OUT_DIR)/vboxdrv.sh \ $(VBOX_LNX_INST_OUT_DIR)/install.sh \ $(VBOX_PATH_LNX_INST_SRC)/installer-common.sh \ $$(linux-scripts_2_STAGE_TARGETS) $(call MSG_TOOL,makeself,,$@) $(QUIET)$(RM) -f $(wildcard $(PATH_STAGE_BIN)/VirtualBox-*.run) $(QUIET)$(if $(VBOX_OSE),,$(INSTALL) -m 0644 $(VBOX_BRAND_LICENSE_TXT) $(VBOX_LNX_INST_STAGE_DIR)/LICENSE) $(QUIET)$(INSTALL) -m 0755 $(VBOX_LNX_INST_OUT_DIR)/vboxdrv.sh $(VBOX_LNX_INST_STAGE_DIR)/ $(QUIET)$(INSTALL) -m 0755 $(VBOX_LNX_INST_OUT_DIR)/install.sh $(VBOX_LNX_INST_STAGE_DIR)/ $(QUIET)$(RM) -f $@ $(QUIET)$(VBOX_MAKESELF) --follow --nocomp $(VBOX_LNX_INST_STAGE_DIR) $@ \ "VirtualBox for Linux installation" ./install.sh "\$$0 1> /dev/null" # files that needs editing before they can be included in the generic installer. $(VBOX_LNX_INST_OUT_DIR)/vboxdrv.sh: $(VBOX_PATH_LNX_INST_SRC)/vboxdrv.sh.in | $$(dir $$@) $(QUIET)$(SED_EXT) \ -e "s|%NOLSB%|yes|g" \ -e "s|%DEBIAN%||g" \ -e "s|%PACKAGE%|virtualbox|g" \ -e "s|%VERSION%|$(VBOX_VERSION_STRING)|g" \ -e "s|%GROUP%|$(if $(VBOX_WITHOUT_HARDENING),vboxusers,root)|g" \ --output $@ \ $< $(VBOX_LNX_INST_OUT_DIR)/install.sh: $(VBOX_PATH_LNX_INST_SRC)/install.sh $(VBOX_PATH_LNX_INST_SRC)/installer-common.sh $(VBOX_VERSION_STAMP) $(VBOX_SVN_REV_KMK).ts | $$(dir $$@) $(QUIET)$(SED) \ -e "s;_VERSION_;$(VBOX_VERSION_STRING);g" \ -e "s;_SVNREV_;$(VBOX_SVN_REV);g" \ -e "s;_BUILD_;$(date-utc );g" \ -e "s;_ARCH_;$(KBUILD_TARGET_ARCH);g" \ -e "s;_HARDENED_;$(VBOX_WITH_HARDENING);g" \ -e "s;_BUILDTYPE_;$(KBUILD_TYPE);g" \ -e "s;_USERNAME_;$(USERNAME);g" \ -e "s;_PYTHON_;$(VBOX_WITH_PYTHON);g" \ -e '/#include installer-common.sh/ {' \ -e "r $(PATH_ROOT)/src/VBox/Installer/linux/installer-common.sh" \ -e 'd' \ -e '}' \ --output $@ \ $< # # The files that the tar archives depend on. The wildcards are ugly, but they # do save us from having to update the makefile whenever something new is added # to the module source directories. # VBOX_LNX_INST_ARCH_DEPS := \ $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/, $(VBOX_LNX_ARCH_FILES)) \ $(VBOX_LNX_INST_DEP_ON_MAKEFILE) \ $(VBOX_VERSION_STAMP) \ $(wildcard $(PATH_STAGE_BIN)/src/*) \ $(wildcard $(PATH_STAGE_BIN)/src/*/*) \ $(wildcard $(PATH_STAGE_BIN)/src/*/*/*) \ $(wildcard $(PATH_STAGE_BIN)/src/*/*/*/*) \ $(wildcard $(PATH_STAGE_BIN)/scripts/*) # # .tar.bz2 for converting into .run # $(VBOX_LNX_INST_STAGE_DIR)/VirtualBox.tar.bz2: $(VBOX_LNX_INST_ARCH_DEPS) $(call MSG_L1,Packing $@) $(QUIET)$(RM) -f -- $@ $(patsubst %.bz2,%,$@) $(QUIET)$(MKDIR) -p $(@D) ifdef VBOX_USE_PBZIP2 $(QUIET)tar --dereference --owner 0 --group 0 \ -cRhf $(patsubst %.bz2,%,$@) -C $(VBOX_LNX_INST_OUT_DIR)/archive $(VBOX_LNX_ARCH_FILES) $(QUIET)pbzip2 $(patsubst %.bz2,%,$@) else $(QUIET)tar --dereference --owner 0 --group 0 \ -cjRhf $@ -C $(VBOX_LNX_INST_OUT_DIR)/archive $(VBOX_LNX_ARCH_FILES) endif $(QUIET)$(CHMOD) 0644 $@ # # .tar.bz2 for distribution with the files under VirtualBox-/. # $(PATH_STAGE_BIN)/VirtualBox.tar.bz2: $(VBOX_LNX_INST_ARCH_DEPS) $(call MSG_L1,Packing $@) $(QUIET)$(RM) -f -- $(VBOX_LNX_INST_OUT_DIR)/VirtualBox-$(VBOX_VERSION_STRING) $@ $(patsubst %.bz2,%,$@) $(QUIET)$(LN_SYMLINK) $(VBOX_LNX_INST_OUT_DIR)/archive/ $(VBOX_LNX_INST_OUT_DIR)/VirtualBox-$(VBOX_VERSION_STRING) ifdef VBOX_USE_PBZIP2 $(QUIET)tar --dereference --owner 0 --group 0 \ -cRhf $(patsubst %.bz2,%,$@) -C $(VBOX_LNX_INST_OUT_DIR) \ $(addprefix VirtualBox-$(VBOX_VERSION_STRING)/,$(VBOX_LNX_ARCH_FILES)) $(QUIET)pbzip2 $(patsubst %.bz2,%,$@) else $(QUIET)tar --dereference --owner 0 --group 0 \ -cjRhf $@ -C $(VBOX_LNX_INST_OUT_DIR) \ $(addprefix VirtualBox-$(VBOX_VERSION_STRING)/,$(VBOX_LNX_ARCH_FILES)) endif $(QUIET)$(RM) -f -- $(VBOX_LNX_INST_OUT_DIR)/VirtualBox-$(VBOX_VERSION_STRING) # pattern rule for stripping and copying the VBOX_LNX_STRIP_BIN files to archive/ $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/,$(VBOX_LNX_STRIP_BIN)): \ $(VBOX_LNX_INST_OUT_DIR)/archive/% : $(PATH_STAGE_BIN)/% \ $(if $(VBOX_NO_LINUX_RUN_INSTALLER),,\ $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/%) \ | $$(dir $$@) $(call MSG_INST_FILE,$<,$@) $(QUIET)$(INSTALL) -m 0755 $(if $(VBOX_DO_STRIP),-s,) $< $@ $(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),$@) $@) # pattern rule for striping and copying the VBOX_LNX_STRIP_OBJ files to archive/ $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/,$(VBOX_LNX_STRIP_OBJ)): \ $(VBOX_LNX_INST_OUT_DIR)/archive/% : $(PATH_STAGE_BIN)/% | $$(dir $$@) $(call MSG_INST_FILE,$<,$@) ifeq ($(VBOX_DO_STRIP),) $(QUIET)$(INSTALL) -m 0644 $< $@ else # strip to temp file because of umask. $(QUIET)objcopy --strip-unneeded -R .comment $< $@.tmp $(QUIET)$(INSTALL) -m 0644 $@.tmp $@ $(QUIET)$(RM) -f -- $@.tmp endif # special rule for the kernel modules $(VBOX_LNX_INST_OUT_DIR)/archive/src: $(PATH_STAGE_BIN)/src | $(dir $@) $(call MSG_INST_SYM,$<,$@) $(QUIET)$(RM) -Rf $@ $(QUIET)$(MKDIR) $@ $(QUIET)$(LN_SYMLINK) $< $@/vboxhost # pattern rule for linking the VBOX_LNX_NO_STRIP into archive/ $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive/,$(VBOX_LNX_NO_STRIP)): \ $(VBOX_LNX_INST_OUT_DIR)/archive/% : $(PATH_STAGE_BIN)/% | $$(dir $$@) $(call MSG_INST_SYM,$<,$@) $(QUIET)$(RM) -f $@ $(QUIET)$(LN_SYMLINK) $< $@ # rules for creating directories in archive (the pattern rules depends on these). BLDDIRS += $(foreach d,\ archive \ archive/components \ archive/helpers \ archive/nls \ $(if $(VBOX_WITH_QT4_SUN),archive/accessible,) \ $(if $(VBOX_WITH_PYTHON),\ archive/sdk/installer \ archive/sdk/installer/vboxapi \ archive/sdk/bindings/xpcom/python/xpcom \ archive/sdk/bindings/xpcom/python/xpcom/client \ archive/sdk/bindings/xpcom/python/xpcom/server,) \ $(if $(VBOX_WITH_JXPCOM),\ archive/sdk/bindings/xpcom/java,) \ $(if $(and $(VBOX_WITH_EXTPACK_VNC),$(VBOX_WITHOUT_EXTPACK_VNC_PACKING)), \ archive/ExtensionPacks/VNC \ archive/ExtensionPacks/VNC/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH),) \ archive/additions \ install\ ,$(VBOX_LNX_INST_OUT_DIR)/$(d)/) # # .tar.bz2 for with the debug info. # $(PATH_STAGE_BIN)/VirtualBox-dbg.tar.bz2: \ $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/, $(VBOX_LNX_STRIP_BIN)) $(call MSG_L1,Packing $@) $(QUIET)$(RM) -f -- $@ $(patsubst %.bz2,%,$@) ifdef VBOX_USE_PBZIP2 $(QUIET)tar --dereference --owner 0 --group 0 \ -cRhf $(patsubst %.bz2,%,$@) -C $(VBOX_LNX_INST_OUT_DIR)/archive-dbg \ $(addprefix $(VBOX_LNX_DBG_PATH)/,$(VBOX_LNX_STRIP_BIN)) $(QUIET)pbzip2 $(patsubst %.bz2,%,$@) else $(QUIET)tar --dereference --owner 0 --group 0 \ -cjRhf $@ -C $(VBOX_LNX_INST_OUT_DIR)/archive-dbg \ $(addprefix $(VBOX_LNX_DBG_PATH)/,$(VBOX_LNX_STRIP_BIN)) endif # pattern rule for copying the debug info from the VBOX_LNX_STRIP_BIN files into archive-dbg/$(VBOX_LNX_DBG_PATH)/ $(addprefix $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/,$(VBOX_LNX_STRIP_BIN)): \ $(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(VBOX_LNX_DBG_PATH)/% : $(PATH_STAGE_BIN)/% | $$(dir $$@) $(call MSG_TOOL,copydbg,$<,$@) $(QUIET)objcopy --only-keep-debug $< $@ # rules for creating directories in archive-dbg (the pattern rules depends on these). BLDDIRS += $(foreach d,\ $(VBOX_LNX_DBG_PATH) \ $(VBOX_LNX_DBG_PATH)/components \ $(VBOX_LNX_DBG_PATH)/helpers \ ,$(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(d)/) include $(FILE_KBUILD_SUB_FOOTER)