VirtualBox

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

Last change on this file since 4968 was 4410, checked in by vboxsync, 17 years ago

ooops.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 7.0 KB
Line 
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
36DEPTH = ../../..
37include $(PATH_KBUILD)/subheader.kmk
38
39#
40# Make some indicator adjustments to keep things simple in these makefiles.
41#
42ifdef 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 =
47else 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 =
52endif
53
54# Include sub-makefiles.
55include $(PATH_SUB_CURRENT)/common/Makefile.kmk
56ifdef VBOX_WITH_WIN32_ADDITIONS
57 ifndef VBOX_REMOTE_WIN32_ADDITIONS_BUILD
58 include $(PATH_SUB_CURRENT)/WINNT/Makefile.kmk
59 endif
60endif
61
62ifdef VBOX_WITH_LINUX_ADDITIONS
63 SUBDIRS += linux
64 LINUXINSTALLER = $(PATH_BIN)/additions/VBoxLinuxAdditions.run
65endif
66LINUXINSTALLER_CROSS = $(PATH_ROOT)/out/linux.x86/$(BUILD_TYPE)/bin/additions/VBoxLinuxAdditions.run
67ifdef VBOX_ADDITIONS_LINUX_CROSS
68 OTHER_CLEAN += $(LINUXINSTALLER_CROSS)
69 LINUXINSTALLER = $(LINUXINSTALLER_CROSS)
70endif
71
72# The packing target rule, but only if we're on the local build box.
73ifndef 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
77endif
78
79include $(PATH_KBUILD)/subfooter.kmk
80
81
82ifdef VBOX_WITH_WIN32_ADDITIONS
83GUESTADDITIONS_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
101ifdef VBOX_WITH_WIN32_ADDITIONS_SHAREDFOLDERS
102GUESTADDITIONS_WIN32_DEPS += \
103 $(PATH_BIN)/additions/VBoxMRXNP.dll \
104 $(PATH_BIN)/additions/VBoxSF.sys
105endif
106
107GUESTADDITIONS_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
127endif
128
129ifdef LINUXINSTALLER
130GUESTADDITIONS_LINUX_DEPS = $(LINUXINSTALLER)
131GUESTADDITIONS_LINUX_FILESPEC = VBoxLinuxAdditions.run=$(LINUXINSTALLER)
132endif
133
134ifdef VBOX_WITH_OS2_ADDITIONS_BIN
135GUESTADDITIONS_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
142endif
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#
157ifdef VBOX_REMOTE_WIN32_ADDITIONS_BUILD
158OTHER_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
165endif # VBOX_REMOTE_BUILD_WIN32_ADDITIONS
166
167build-win32-additions:
168ifneq ($(BUILD_TARGET),linux) # Nothing is signed here and wine is faster building it.
169 $(KMK) VBOX_ADDITIONS_WIN32_ONLY=1 -C ../Runtime
170endif
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.
176VBOX_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
180test-build-linux32-additions: $(LINUXINSTALLER_CROSS)
181build-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
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