# $Id: Makefile.kmk 7229 2008-03-03 06:17:57Z vboxsync $ ## @file # Top-level makefile for the VirtualBox Guest Additions. # # Cross building of the additions is generally done by remote building # by means of smbfs, cifs, VBOX_ONLY_ADDITIONS=1 and setting BUILD_TARGET # to the desired target. # # Limited support for cross building the windows additions using wine # is provided. There are a couple of issues with the approach (lack of # signing, no VC++ 8 support, ++) that makes it unsuitable for releases. # # Building the linux additions as part of the l4 build is ok because # l4 is built on a linux platform. This is why we have to check if # BUILD_TARGET is l4 or linux in some places, though most of the magic # is done in the templates (Config.kmk). # # # Copyright (C) 2006-2007 innotek GmbH # # 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. # DEPTH = ../../.. include $(PATH_KBUILD)/subheader.kmk # # Make some indicator adjustments to keep things simple in these makefiles. # ifdef VBOX_ADDITIONS_LINUX_ONLY VBOX_ADDITIONS_XYZ_ONLY = 1 VBOX_WITH_LINUX_ADDITIONS = 1 VBOX_WITH_WIN32_ADDITIONS = else ifdef VBOX_ADDITIONS_WIN32_ONLY VBOX_ADDITIONS_XYZ_ONLY = 1 VBOX_WITH_WIN32_ADDITIONS = 1 VBOX_WITH_LINUX_ADDITIONS = endif ifdef VBOX_WITH_WIN32_ADDITIONS VBOX_WITH_ADDITIONS_ISO.win.x86 = 1 endif ifdef VBOX_WITH_LINUX_ADDITIONS VBOX_WITH_ADDITIONS_ISO.linux.x86 = 1 endif ifeq ($(BUILD_TARGET),solaris) VBOX_WITH_ADDITIONS_ISO.solaris.x86 = 1 endif # Include sub-makefiles. include $(PATH_SUB_CURRENT)/common/Makefile.kmk ifdef VBOX_WITH_WIN32_ADDITIONS include $(PATH_SUB_CURRENT)/WINNT/Makefile.kmk endif ifdef VBOX_WITH_LINUX_ADDITIONS include $(PATH_SUB_CURRENT)/linux/Makefile.kmk endif ifdef VBOX_WITH_X11_ADDITIONS include $(PATH_SUB_CURRENT)/x11/Makefile.kmk endif ifeq ($(BUILD_TARGET),solaris) include $(PATH_SUB_CURRENT)/solaris/Makefile.kmk endif # The packing target rule, but only if we're on the local build box. ifndef VBOX_WITHOUT_ADDITIONS_ISO ifndef VBOX_ADDITIONS_XYZ_ONLY PACKING += $(PATH_BIN)/additions/VBoxGuestAdditions.iso endif endif include $(PATH_KBUILD)/subfooter.kmk # # The x86 Windows .iso file spec. # ifdef VBOX_WITH_ADDITIONS_ISO.win.x86 ifdef VBOX_ONLY_ADDITIONS VBOX_PATH_ADDITIONS.win.x86 = $(PATH_OUT_BASE)/win.x86/$(BUILD_TYPE)/bin/additions else # 32-only hack VBOX_PATH_ADDITIONS.win.x86 = $(VBOX_PATH_ADDITIONS) endif ## @todo We're missing the .cat files and using the wrong .inf files here. GUESTADDITIONS_FILESPEC.win.x86 = \ driver/VBoxGuest/VBoxGuest.sys=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxGuest.sys \ driver/VBoxGuest/VBoxGuest.inf=./WINNT/VBoxGuest/VBoxGuest.inf \ driver/VBoxGuest/VBoxService.exe=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxService.exe \ driver/VBoxGuest/VBoxHook.dll=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxHook.dll \ driver/VBoxGuest/VBoxControl.exe=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxControl.exe \ driver/VBoxGuest/VBCoInst.dll=$(VBOX_PATH_ADDITIONS.win.x86)/VBCoInst.dll \ driver/VBoxGuest/VBoxMouse.sys=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxMouse.sys \ driver/VBoxGuest/VBoxMouse.inf=./WINNT/MouseFilter/VBoxMouse.inf \ driver/VBoxVideo/VBoxVideo.sys=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxVideo.sys \ driver/VBoxVideo/VBoxVideo.inf=./WINNT/Graphics/Miniport/VBoxVideo.inf \ driver/VBoxVideo/VBoxDisp.dll=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxDisp.dll \ gina/VBoxGINA.dll=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxGINA.dll \ AMD_PCnet/netamd.inf=./WINNT/Network/AMD/netamd.inf \ AMD_PCnet/pcntpci5.cat=./WINNT/Network/AMD/pcntpci5.cat \ AMD_PCnet/PCNTPCI5.sys=./WINNT/Network/AMD/PCNTPCI5.sys \ VBoxGuestAdditions.exe=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxGuestAdditions.exe \ AUTORUN.INF=./WINNT/Installer/AUTORUN.INF ifdef VBOX_WITH_WIN32_ADDITIONS_SHAREDFOLDERS GUESTADDITIONS_FILESPEC.win.x86 += \ driver/VBoxSF/VBoxSF.sys=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxSF.sys \ driver/VBoxSF/VBoxMRXNP.dll=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxMRXNP.dll endif endif # # The OS/2 .iso file spec. # ifdef VBOX_WITH_ADDITIONS_ISO.os2.x86 ifdef VBOX_ONLY_ADDITIONS VBOX_PATH_ADDITIONS.os2.x86 = $(PATH_OUT_BASE)/os2.x86/$(BUILD_TYPE)/bin/additions else VBOX_PATH_ADDITIONS.os2.x86 = $(VBOX_PATH_ADDITIONS) endif GUESTADDITIONS_FILESPEC.os2.x86 = \ os2/VBoxGuest.sys=$(VBOX_PATH_ADDITIONS.os2.x86)/VBoxGuest.sys \ os2/VBoxService.exe=$(VBOX_PATH_ADDITIONS.os2.x86)/VBoxService.exe \ os2/gengradd.dll=$(VBOX_PATH_ADDITIONS.os2.x86)/gengradd.dll \ os2/libc063.dll=./os2/Bin/libc063.dll \ os2/readme.txt=./os2/Bin/readme.txt \ os2/vboxmouse.sys=$(VBOX_PATH_ADDITIONS.os2.x86)/vboxmouse.sys else ifdef VBOX_WITH_OS2_ADDITIONS_BIN GUESTADDITIONS_FILESPEC.os2.x86 = \ os2/VBoxGuest.sys=./os2/Bin/VBoxGuest.sys \ os2/VBoxService.exe=./os2/Bin/VBoxService.exe \ os2/gengradd.dll=./os2/Bin/gengradd.dll \ os2/libc063.dll=./os2/Bin/libc063.dll \ os2/readme.txt=./os2/Bin/readme.txt \ os2/vboxmouse.sys=./os2/Bin/vboxmouse.sys endif # # The x86 Linux .iso file spec. # ifdef VBOX_WITH_ADDITIONS_ISO.linux.x86 ifdef VBOX_ONLY_ADDITIONS VBOX_PATH_ADDITIONS.linux.x86 = $(PATH_OUT_BASE)/linux.x86/$(BUILD_TYPE)/bin/additions else # 32-bit only hack VBOX_PATH_ADDITIONS.linux.x86 = $(VBOX_PATH_ADDITIONS) endif GUESTADDITIONS_FILESPEC.linux.x86 = \ VBoxLinuxAdditions.run=$(VBOX_PATH_ADDITIONS.linux.x86)/VBoxLinuxAdditions.run endif # # The x86 Solaris .iso file spec. # ifdef VBOX_WITH_ADDITIONS_ISO.solaris.x86 ifdef VBOX_ONLY_ADDITIONS VBOX_PATH_ADDITIONS.solaris.x86 = $(PATH_OUT_BASE)/solaris.x86/$(BUILD_TYPE)/bin/additions else # 32-bit only hack VBOX_PATH_ADDITIONS.solaris.x86 = $(VBOX_PATH_ADDITIONS) endif GUESTADDITIONS_FILESPEC.solaris.x86 = \ VBoxSolarisAdditions=$(VBOX_PATH_ADDITIONS.solaris.x86)/VBoxSolarisAdditions endif # # Build the Guest Additions ISO image. # ifndef VBOX_WITHOUT_ADDITIONS_ISO $(VBOX_PATH_ADDITIONS)/VBoxGuestAdditions.iso: \ $(filter-out %=deleteme=,\ $(subst =,=deleteme= ,\ $(GUESTADDITIONS_FILESPEC.win.x86) \ $(GUESTADDITIONS_FILESPEC.linux.x86) \ $(GUESTADDITIONS_FILESPEC.os2.x86) \ )\ ) \ $(VBOX_SVN_REV_KMK) \ Makefile.kmk $(call MSG_TOOL,mkisofs,,$@) $(QUIET)$(MKDIR) -p $(@D) $(VBOX_MKISOFS) -rational-rock -joliet -iso-level 4 \ -volid "VBOXADDITIONS_$(VBOX_VERSION_STRING)_$(VBOX_SVN_REV)" -l -graft-points -o $@ \ $(GUESTADDITIONS_FILESPEC.win.x86) \ $(GUESTADDITIONS_FILESPEC.linux.x86) \ $(GUESTADDITIONS_FILESPEC.solaris.x86) \ $(GUESTADDITIONS_FILESPEC.os2.x86) endif