1 | # $Id: Makefile.kmk 18377 2009-03-27 10:44:02Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Top-level makefile for the VirtualBox Guest Additions.
|
---|
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 |
|
---|
22 | SUB_DEPTH = ../../..
|
---|
23 | include $(KBUILD_PATH)/subheader.kmk
|
---|
24 |
|
---|
25 | #
|
---|
26 | # Globals
|
---|
27 | #
|
---|
28 | VBOX_PATH_ADDITIONS_SRC := $(PATH_SUB_CURRENT)
|
---|
29 |
|
---|
30 | #
|
---|
31 | # Cross building of the additions is generally done by remote building
|
---|
32 | # by means of smbfs, cifs, VBOX_ONLY_ADDITIONS=1 and setting KBUILD_TARGET
|
---|
33 | # and KBUILD_TARGET_ARCH to the desired target and architecture.
|
---|
34 | #
|
---|
35 | # Limited support for cross building the windows additions using wine
|
---|
36 | # is provided. There are a couple of issues with the approach (lack of
|
---|
37 | # signing, no VC++ 8 support, ++) that makes it unsuitable for releases.
|
---|
38 | #
|
---|
39 | #
|
---|
40 | # Note! VBOX_WITH_ADDITIONS is checked for by our parent makefile.
|
---|
41 | #
|
---|
42 | # Note! VBOX_WITH_X11_ADDITIONS is set in Config.kmk
|
---|
43 | #
|
---|
44 | # Note! The additions build box will set the VBOX_WITH_ADDITIONS_ISO.win.x86
|
---|
45 | # variables before invoking us from the root makefile.
|
---|
46 | #
|
---|
47 | # ==> All we have to worry about is what to do on the target we're on.
|
---|
48 | #
|
---|
49 | VBOX_WITH_ADDITIONS_ISO.$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH) = 1
|
---|
50 |
|
---|
51 | # Include sub-makefiles.
|
---|
52 | include $(PATH_SUB_CURRENT)/common/Makefile.kmk
|
---|
53 |
|
---|
54 | ifdef VBOX_WITH_X11_ADDITIONS
|
---|
55 | include $(PATH_SUB_CURRENT)/x11/Makefile.kmk
|
---|
56 | endif
|
---|
57 |
|
---|
58 | ifeq ($(KBUILD_TARGET),freebsd)
|
---|
59 | include $(PATH_SUB_CURRENT)/freebsd/Makefile.kmk
|
---|
60 | endif
|
---|
61 | ifeq ($(KBUILD_TARGET),linux)
|
---|
62 | include $(PATH_SUB_CURRENT)/linux/Makefile.kmk
|
---|
63 | endif
|
---|
64 | #ifeq ($(KBUILD_TARGET),os2)
|
---|
65 | # include $(PATH_SUB_CURRENT)/os2/Makefile.kmk
|
---|
66 | #endif
|
---|
67 | ifeq ($(KBUILD_TARGET),solaris)
|
---|
68 | include $(PATH_SUB_CURRENT)/solaris/Makefile.kmk
|
---|
69 | endif
|
---|
70 | ifeq ($(KBUILD_TARGET),win)
|
---|
71 | include $(PATH_SUB_CURRENT)/WINNT/Makefile.kmk
|
---|
72 | endif
|
---|
73 |
|
---|
74 | # The packing target rule, but only if we're on the local build box.
|
---|
75 | # (VBOX_WITHOUT_ADDITIONS_ISO is used by the additions build box, see the root makefile.)
|
---|
76 | ifndef VBOX_WITHOUT_ADDITIONS_ISO
|
---|
77 | PACKING += $(PATH_BIN)/additions/VBoxGuestAdditions.iso
|
---|
78 | endif
|
---|
79 |
|
---|
80 | include $(KBUILD_PATH)/subfooter.kmk
|
---|
81 |
|
---|
82 | #
|
---|
83 | # File per-OS/arch file specs for the additions iso (alphabetical order).
|
---|
84 | #
|
---|
85 | # We test for the VBOX_WITH_ADDITIONS_ISO.os.arch so that we don't have to
|
---|
86 | # do the $(if )'ing down where the GUESTADDITIONS_FILESPEC.os.arch down
|
---|
87 | # in the dependency list and mkisofs command.
|
---|
88 | #
|
---|
89 |
|
---|
90 | ifdef VBOX_WITH_ADDITIONS_ISO.freebsd.amd64
|
---|
91 | VBOX_PATH_ADDITIONS.freebsd.amd64 = $(PATH_OUT_BASE)/freebsd.amd64/$(KBUILD_TYPE)/bin/additions
|
---|
92 | GUESTADDITIONS_FILESPEC.freebsd.amd64 = \
|
---|
93 | VBoxFreeBSDAdditions-amd64.tbz=$(VBOX_PATH_ADDITIONS.freebsd.amd64)/VBoxFreeBSDAdditions.tbz
|
---|
94 | endif
|
---|
95 | ifdef VBOX_WITH_ADDITIONS_ISO.freebsd.x86
|
---|
96 | VBOX_PATH_ADDITIONS.freebsd.x86 = $(PATH_OUT_BASE)/freebsd.x86/$(KBUILD_TYPE)/bin/additions
|
---|
97 | GUESTADDITIONS_FILESPEC.freebsd.x86 = \
|
---|
98 | VBoxFreeBSDAdditions-x86.tbz=$(VBOX_PATH_ADDITIONS.freebsd.x86)/VBoxFreeBSDAdditions.tbz
|
---|
99 | endif
|
---|
100 |
|
---|
101 |
|
---|
102 | ifdef VBOX_WITH_ADDITIONS_ISO.os2.x86
|
---|
103 | VBOX_PATH_ADDITIONS.os2.x86 = $(PATH_OUT_BASE)/os2.x86/$(KBUILD_TYPE)/bin/additions
|
---|
104 | GUESTADDITIONS_FILESPEC.os2.x86 = \
|
---|
105 | 32Bit/OS2/VBoxGuest.sys=$(VBOX_PATH_ADDITIONS.os2.x86)/VBoxGuest.sys \
|
---|
106 | 32Bit/OS2/VBoxService.exe=$(VBOX_PATH_ADDITIONS.os2.x86)/VBoxService.exe \
|
---|
107 | 32Bit/OS2/gengradd.dll=$(VBOX_PATH_ADDITIONS.os2.x86)/gengradd.dll \
|
---|
108 | 32Bit/OS2/libc063.dll=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/libc063.dll \
|
---|
109 | 32Bit/OS2/readme.txt=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/readme.txt \
|
---|
110 | 32Bit/OS2/vboxmouse.sys=$(VBOX_PATH_ADDITIONS.os2.x86)/vboxmouse.sys
|
---|
111 | else ifdef VBOX_WITH_OS2_ADDITIONS_BIN
|
---|
112 | GUESTADDITIONS_FILESPEC.os2.x86 = \
|
---|
113 | 32Bit/OS2/VBoxGuest.sys=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/VBoxGuest.sys \
|
---|
114 | 32Bit/OS2/VBoxService.exe=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/VBoxService.exe \
|
---|
115 | 32Bit/OS2/gengradd.dll=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/gengradd.dll \
|
---|
116 | 32Bit/OS2/libc063.dll=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/libc063.dll \
|
---|
117 | 32Bit/OS2/readme.txt=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/readme.txt \
|
---|
118 | 32Bit/OS2/vboxmouse.sys=$(VBOX_PATH_ADDITIONS_SRC)/os2/Bin/vboxmouse.sys
|
---|
119 | endif
|
---|
120 |
|
---|
121 |
|
---|
122 | ifdef VBOX_WITH_ADDITIONS_ISO.linux.amd64
|
---|
123 | VBOX_PATH_ADDITIONS.linux.amd64 = $(PATH_OUT_BASE)/linux.amd64/$(KBUILD_TYPE)/bin/additions
|
---|
124 | GUESTADDITIONS_FILESPEC.linux.amd64 = \
|
---|
125 | VBoxLinuxAdditions-amd64.run=$(VBOX_PATH_ADDITIONS.linux.amd64)/VBoxLinuxAdditions.run
|
---|
126 | endif
|
---|
127 | ifdef VBOX_WITH_ADDITIONS_ISO.linux.x86
|
---|
128 | VBOX_PATH_ADDITIONS.linux.x86 = $(PATH_OUT_BASE)/linux.x86/$(KBUILD_TYPE)/bin/additions
|
---|
129 | ## @todo 64-bit additions: rename this package, update docs (?) and tests (?). create wrapper? create gnome/kde autorun app (xplatform) ?
|
---|
130 | GUESTADDITIONS_FILESPEC.linux.x86 = \
|
---|
131 | VBoxLinuxAdditions-x86.run=$(VBOX_PATH_ADDITIONS.linux.x86)/VBoxLinuxAdditions.run \
|
---|
132 | autorun.sh=$(VBOX_PATH_ADDITIONS.linux.x86)/autorun.sh
|
---|
133 | endif
|
---|
134 |
|
---|
135 | ifdef VBOX_WITH_ADDITIONS_ISO.solaris.amd64
|
---|
136 | VBOX_PATH_ADDITIONS.solaris.amd64 = $(PATH_OUT_BASE)/solaris.amd64/$(KBUILD_TYPE)/bin/additions
|
---|
137 | GUESTADDITIONS_FILESPEC.solaris.amd64 = \
|
---|
138 | VBoxSolarisAdditions-amd64.pkg=$(VBOX_PATH_ADDITIONS.solaris.amd64)/VBoxSolarisAdditions.pkg
|
---|
139 | endif
|
---|
140 | ifdef VBOX_WITH_ADDITIONS_ISO.solaris.x86
|
---|
141 | VBOX_PATH_ADDITIONS.solaris.x86 = $(PATH_OUT_BASE)/solaris.x86/$(KBUILD_TYPE)/bin/additions
|
---|
142 | GUESTADDITIONS_FILESPEC.solaris.x86 = \
|
---|
143 | VBoxSolarisAdditions-x86.pkg=$(VBOX_PATH_ADDITIONS.solaris.x86)/VBoxSolarisAdditions.pkg
|
---|
144 | endif
|
---|
145 | ifdef VBOX_WITH_COMBINED_SOLARIS_GUEST_PACKAGE
|
---|
146 | # Build combined 32bit and 64bit solaris additions, not just a single arch.
|
---|
147 | # This assumes that the 32bit build directory contains the combined additions
|
---|
148 | # for 32bit and 64bit solaris. This just modifies variables set above.
|
---|
149 | GUESTADDITIONS_FILESPEC.solaris.x86 = \
|
---|
150 | VBoxSolarisAdditions.pkg=$(VBOX_PATH_ADDITIONS.solaris.x86)/VBoxSolarisAdditions.pkg
|
---|
151 | GUESTADDITIONS_FILESPEC.solaris.amd64 =
|
---|
152 | endif
|
---|
153 |
|
---|
154 | ifdef VBOX_WITH_ADDITIONS_ISO.win.amd64
|
---|
155 | VBOX_PATH_ADDITIONS.win.amd64 = $(PATH_OUT_BASE)/win.amd64/$(KBUILD_TYPE)/bin/additions
|
---|
156 | GUESTADDITIONS_FILESPEC.win.amd64 = \
|
---|
157 | VBoxWindowsAdditions-amd64.exe=$(VBOX_PATH_ADDITIONS.win.amd64)/VBoxWindowsAdditions-amd64.exe
|
---|
158 | endif
|
---|
159 |
|
---|
160 | ifdef VBOX_WITH_ADDITIONS_ISO.win.x86
|
---|
161 | VBOX_PATH_ADDITIONS.win.x86 = $(PATH_OUT_BASE)/win.x86/$(KBUILD_TYPE)/bin/additions
|
---|
162 | GUESTADDITIONS_FILESPEC.win.x86 = \
|
---|
163 | VBoxWindowsAdditions-x86.exe=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxWindowsAdditions-x86.exe \
|
---|
164 | VBoxWindowsAdditions.exe=$(VBOX_PATH_ADDITIONS.win.x86)/VBoxWindowsAdditions.exe \
|
---|
165 | AUTORUN.INF=$(VBOX_PATH_ADDITIONS_SRC)/WINNT/Installer/ISO/AUTORUN.INF \
|
---|
166 | 32Bit/Readme.txt=$(VBOX_PATH_ADDITIONS_SRC)/WINNT/Installer/ISO/ReadmeDrivers.txt \
|
---|
167 | 64Bit/Readme.txt=$(VBOX_PATH_ADDITIONS_SRC)/WINNT/Installer/ISO/ReadmeDrivers.txt
|
---|
168 | endif # win.x86
|
---|
169 |
|
---|
170 | #
|
---|
171 | # Build the Guest Additions ISO image.
|
---|
172 | #
|
---|
173 | ifndef VBOX_WITHOUT_ADDITIONS_ISO
|
---|
174 | $(VBOX_PATH_ADDITIONS_ISO)/VBoxGuestAdditions.iso: \
|
---|
175 | $(filter-out %=deleteme=,\
|
---|
176 | $(subst =,=deleteme= ,\
|
---|
177 | $(GUESTADDITIONS_FILESPEC.win.x86) \
|
---|
178 | $(GUESTADDITIONS_FILESPEC.win.amd64) \
|
---|
179 | $(GUESTADDITIONS_FILESPEC.solaris.x86) \
|
---|
180 | $(GUESTADDITIONS_FILESPEC.solaris.amd64) \
|
---|
181 | $(GUESTADDITIONS_FILESPEC.os2.x86) \
|
---|
182 | $(GUESTADDITIONS_FILESPEC.linux.x86) \
|
---|
183 | $(GUESTADDITIONS_FILESPEC.linux.amd64) \
|
---|
184 | $(GUESTADDITIONS_FILESPEC.freebsd.x86) \
|
---|
185 | $(GUESTADDITIONS_FILESPEC.freebsd.amd64) \
|
---|
186 | )\
|
---|
187 | ) \
|
---|
188 | $(VBOX_SVN_REV_KMK) \
|
---|
189 | $(VBOX_PATH_ADDITIONS_SRC)/Makefile.kmk
|
---|
190 | $(call MSG_TOOL,mkisofs,,$@)
|
---|
191 | $(QUIET)$(MKDIR) -p $(@D)
|
---|
192 | @# use iso-level 3 which is the most ISO conforming level with least restrictions; iso-level 4 maps to iso-level 2
|
---|
193 | @# with some extra restrictions removal (not conforming to ISO9660) which some platforms like Solaris 10 does not like.
|
---|
194 | $(VBOX_MKISOFS) -rational-rock -joliet -iso-level 3 \
|
---|
195 | -volid "VBOXADDITIONS_$(VBOX_VERSION_STRING)_$(VBOX_SVN_REV)" -l -graft-points -o $@ \
|
---|
196 | $(GUESTADDITIONS_FILESPEC.win) \
|
---|
197 | $(GUESTADDITIONS_FILESPEC.win.x86) \
|
---|
198 | $(GUESTADDITIONS_FILESPEC.win.amd64) \
|
---|
199 | $(GUESTADDITIONS_FILESPEC.solaris.x86) \
|
---|
200 | $(GUESTADDITIONS_FILESPEC.solaris.amd64) \
|
---|
201 | $(GUESTADDITIONS_FILESPEC.os2.x86) \
|
---|
202 | $(GUESTADDITIONS_FILESPEC.linux.x86) \
|
---|
203 | $(GUESTADDITIONS_FILESPEC.linux.amd64) \
|
---|
204 | $(GUESTADDITIONS_FILESPEC.freebsd.x86) \
|
---|
205 | $(GUESTADDITIONS_FILESPEC.freebsd.amd64)
|
---|
206 |
|
---|
207 | # Alias for creating the iso.
|
---|
208 | .PHONY: additions-iso
|
---|
209 | additions-iso: $(VBOX_PATH_ADDITIONS_ISO)/VBoxGuestAdditions.iso
|
---|
210 |
|
---|
211 | endif
|
---|
212 |
|
---|