VirtualBox

source: vbox/trunk/Makefile.kmk@ 6190

Last change on this file since 6190 was 6142, checked in by vboxsync, 17 years ago

Solaris doesn't respect #!kmk_ash it seem.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 14.8 KB
Line 
1# $Id: Makefile.kmk 6142 2007-12-18 18:12:55Z vboxsync $
2## @file
3# Top level makefile.
4#
5
6#
7# Copyright (C) 2006-2007 innotek GmbH
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
18DEPTH = .
19include $(PATH_KBUILD)/header.kmk
20
21ifdef VBOX_WITH_DOCS
22 ifndef VBOX_ONLY_ADDITIONS
23 SUBDIRS = doc/manual
24 endif
25endif
26SUBDIRS += src
27
28ifndef VBOX_ONLY_ADDITIONS
29#
30# Install external binaries (mostly redistributable parts of tools we use).
31# This must be done *before* we build the manual.
32#
33# To avoid dragging in unnecessary tools and sdks here, we don't use the .win
34# and .linux property suffixes.
35#
36INSTALLS = bin
37
38bin_INST = $(INST_BIN)
39
40# The SDL DLLs
41ifeq ($(filter-out win os2,$(BUILD_TARGET)),)
42 ifneq ($(VBOX_WITH_VBOXSDL)$(VBOX_WITH_VBOXBFE),)
43 include $(PATH_KBUILD)/sdks/LIBSDL.kmk
44 bin_SOURCES += \
45 $(DLL_SDK_LIBSDL_SDL)
46 ifdef VBOX_WITH_SECURELABEL
47 bin_SOURCES += \
48 $(DLL_SDK_LIBSDL_SDLTTF)
49 endif
50 ifeq ($(BUILD_TARGET),os2)
51 bin_SOURCES += \
52 $(DLL_SDK_LIBSDL_FSLIB)
53 endif
54 endif
55endif
56
57
58# The Qt DLLs.
59ifneq ($(VBOX_WITH_QTGUI),)
60 ifeq ($(BUILD_TARGET),win)
61 #include $(PATH_KBUILD)/sdks/QT3.kmk
62 #bin_SOURCES += \
63 # $(DLL_SDK_QT3_QT)
64 ifeq ($(BUILD_TARGET).$(BUILD_TARGET_ARCH),win.x86)
65 VBOX_DLL_QT ?= $(VBOX_PATH_QT)/bin/qt-mt333.dll
66 else ifeq ($(BUILD_TARGET).$(BUILD_TARGET_ARCH),win.amd64)
67 VBOX_DLL_QT ?= $(PATH_DEVTOOLS)/win.amd64/Qt/v3.3.8/lib/qt-mt338.dll=>qt-mt338.dll
68 endif
69 ifdef VBOX_DLL_QT
70 bin_SOURCES += \
71 $(VBOX_DLL_QT)=>$(not-dir $(VBOX_DLL_QT))
72 endif
73 else ifeq ($(BUILD_TARGET),os2)
74 VBOX_DLL_QT ?= $(lastword $(sort $(wildcard $(VBOX_PATH_QT)/bin/*qt*.dll)))
75 ifneq ($(strip $(VBOX_DLL_QT)),)
76 bin_SOURCES += \
77 $(VBOX_DLL_QT)=>$(not-dir $(VBOX_DLL_QT))
78 endif
79 else ifeq ($(VBOX_MUST_INSTALL_LIB_QT),1)
80 bin_SOURCES += \
81 $(LIB_QT)
82 endif
83endif
84
85
86# The compiler runtime DLLs.
87ifeq ($(BUILD_TARGET).$(VBOX_WITHOUT_COMPILER_REDIST),win.)
88 ifdef VBOX_USE_VCC80
89 include $(PATH_KBUILD)/tools/VCC80X86.kmk
90 include $(PATH_KBUILD)/tools/VCC80AMD64.kmk
91 bin_SOURCES.x86 += \
92 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
93 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
94 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
95 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
96 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
97 $(PATH_TOOL_VCC80X86)/redist/x86/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
98 bin_SOURCES.amd64 += \
99 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
100 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>Microsoft.VC80.CRT/msvcr80.dll \
101 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>Microsoft.VC80.CRT/msvcp80.dll \
102 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest=>testcase/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest \
103 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcr80.dll=>testcase/Microsoft.VC80.CRT/msvcr80.dll \
104 $(PATH_TOOL_VCC80AMD64)/redist/amd64/Microsoft.VC80.CRT/msvcp80.dll=>testcase/Microsoft.VC80.CRT/msvcp80.dll
105 endif
106 ifndef VBOX_USE_VCC80
107 VBOX_INSTALL_VCC70_RT = 1
108 endif
109 ifeq ($(BUILD_TARGET).$(BUILD_TARGET_ARCH),win.x86)
110 VBOX_INSTALL_VCC70_RT = 1
111 endif
112 ifdef VBOX_INSTALL_VCC70_RT
113 include $(PATH_KBUILD)/tools/VCC70.kmk
114 ## @todo Move these defines to VCC70.
115 DLL_TOOL_VCC70_MSVCR71 ?= $(PATH_TOOL_VCC70)/bin/msvcr71.dll
116 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCR71)),)
117 bin_SOURCES += \
118 $(DLL_TOOL_VCC70_MSVCR71)=>msvcr71.dll \
119 $(DLL_TOOL_VCC70_MSVCR71)=>testcase/msvcr71.dll
120 endif
121 DLL_TOOL_VCC70_MSVCP71 ?= $(PATH_TOOL_VCC70)/bin/msvcp71.dll
122 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCP71)),)
123 bin_SOURCES += \
124 $(DLL_TOOL_VCC70_MSVCP71)=>msvcp71.dll \
125 $(DLL_TOOL_VCC70_MSVCP71)=>testcase/msvcp71.dll
126 endif
127 DLL_TOOL_VCC70_MSVCRT ?= $(PATH_TOOL_VCC70)/bin/msvcrt.dll
128 ifneq ($(wildcard $(DLL_TOOL_VCC70_MSVCRT)),)
129 bin_SOURCES += \
130 $(DLL_TOOL_VCC70_MSVCRT)=>msvcrt.dll \
131 $(DLL_TOOL_VCC70_MSVCRT)=>testcase/msvcrt.dll
132 endif
133 endif
134endif
135
136
137#
138# Install additions iso from the build server.
139# The $(CP)/$(RM) stuff can be replaced by a simple $(TOUCH) once that has
140# been added to kBuild.
141#
142## @todo need kmk_builtin_touch!
143ifdef VBOX_WITH_ADDITIONS_FROM_BUILD_SERVER
144INSTALLS += buildserver-additions
145buildserver-additions_INST = $(INST_ADDITIONS)
146buildserver-additions_MODE = 0644
147buildserver-additions_SOURCES = $(PATH_TARGET)/VBoxGuestAdditions.iso
148buildserver-additions_CLEANS = $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
149
150$(PATH_TARGET)/VBoxGuestAdditions.iso: $(VBOX_SVN_REV_KMK) $(PATH_DEVTOOLS)/bin/additions.sh | $(call DIRDEP, $(PATH_TARGET))
151 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
152# $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
153 $(KMK) --affinity 1 -f $(MAKEFILE) buildserver-additions-affinity-hack
154 $(CP) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp $(PATH_TARGET)/VBoxGuestAdditions.iso
155 $(RM) -f $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
156 $(QUIET)$(APPEND) $@ done
157
158buildserver-additions-affinity-hack:
159 $(SHELL) $(PATH_DEVTOOLS)/bin/additions.sh --cmd fetch --filename $(PATH_TARGET)/VBoxGuestAdditions.iso.tmp
160endif
161
162
163#
164# Install staged binaries on platforms where we can't cross
165# compile things.
166#
167ifneq ($(filter-out linux win l4, $(BUILD_TARGET)),)
168 VBOX_PATH_STAGED ?= .
169
170 # Additions.
171 ifndef VBOX_WITH_LINUX_ADDITIONS
172 ifndef VBOX_WITH_WIN32_ADDITIONS
173 ifneq ($(wildcard $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso),)
174 INSTALLS += staged-additions
175 staged-additions_INST = $(INST_ADDITIONS)
176 staged-additions_MODE = 0644
177 staged-additions_SOURCES = $(VBOX_PATH_STAGED)/VBoxGuestAdditions.iso
178 endif
179 endif
180 endif
181
182 # guesttool.exe
183 ifndef VBOX_WITH_WIN32_ADDITIONS
184 ifneq ($(wildcard $(VBOX_PATH_STAGED)/guesttool.exe),)
185 INSTALLS += staged-guesttool
186 staged-guesttool_INST = $(INST_BIN)
187 staged-guesttool_SOURCES = $(VBOX_PATH_STAGED)/guesttool.exe
188 endif
189 endif
190
191endif
192
193endif # !VBOX_ONLY_ADDITIONS
194
195
196include $(PATH_KBUILD)/footer.kmk
197
198
199#
200# Generate documentation.
201# (This should be converted into a separate pass or merged with an existing one later.)
202#
203docs: docs.Core
204 $(MAKE) -C src/VBox/Main docs
205 $(MAKE) -C src/VBox/Runtime docs
206
207docs.Core: $(PATH_TARGET)/docs.Core
208
209
210#
211# The core (VMM+Runtime+Devices) documentation.
212#
213$(PATH_TARGET)/docs.Core: \
214 Doxyfile.Core \
215 | $(call DIRDEP, $(PATH_TARGET)) \
216 $(call DIRDEP, $(PATH_OUT)/docs/Core)
217 $(RM) -f $(wildcard $(PATH_OUT)/docs/Core/html/*)
218ifdef KMK_USE_REDIRECT
219 $(REDIRECT) -E 'PATH_OUT=$(PATH_OUT)' -E 'PATH_TARGET=$(PATH_TARGET)' -- doxygen Doxyfile.Core
220else
221 PATH_OUT="$(PATH_OUT)" PATH_TARGET="$(PATH_TARGET)" doxygen Doxyfile.Core
222endif
223
224$(call DIRDEP, $(PATH_OUT)/docs/Core):
225 $(MKDIR) -p $@
226
227
228#
229# Generate x86.mac and err.mac.
230#
231incs:
232 $(SED) -f include/VBox/err.sed include/VBox/err.h > include/VBox/err.mac
233 echo '%include "iprt/err.mac"' >> include/VBox/err.mac
234 $(SED) -f include/VBox/err.sed include/iprt/err.h > include/iprt/err.mac
235 $(SED) -e '/__VBox_x86_h__/d' -e '/#define/!d' -e 's/#define/%define/' include/VBox/x86.h > include/VBox/x86.mac
236
237
238#
239# Generate Visual SlickEdit tagging #defines.
240#
241vslick.h: include/VBox/cdefs.h Makefile
242 echo '// autogenerated' > $@.tmp
243 #echo '#define __BEGIN_DECLS ' >> $@.tmp
244 #echo '#define __END_DECLS ' >> $@.tmp
245
246 echo '#define ATL_NO_VTABLE ' >> $@.tmp
247 echo '#define BEGIN_COM_MAP(a) ' >> $@.tmp
248 echo '#define END_COM_MAP(a) ' >> $@.tmp
249
250 echo '#define CHECKREADY if(!isReady()) return E_UNEXPECTED; ' >> $@.tmp
251 echo '#define COM_DECL_READONLY_ENUM_AND_COLLECTION(a) ' >> $@.tmp
252 echo '#define COM_INTERFACE_ENTRY(a) ' >> $@.tmp
253 echo '#define COMGETTER(n) Get##n ' >> $@.tmp
254 echo '#define COMSETTER(n) Set##n ' >> $@.tmp
255 echo '#define DECLARE_NOT_AGGREGATABLE(a) ' >> $@.tmp
256 echo '#define DECLARE_PROTECT_FINAL_CONSTRUCT(a) ' >> $@.tmp
257 echo '#define NS_DECL_ISUPPORTS ' >> $@.tmp
258 echo '#define NS_IMETHOD NS_IMETHOD_(nsresult) ' >> $@.tmp
259 echo '#define NS_IMETHOD_(type) type ' >> $@.tmp
260 echo '#define PARSERS_EXPORT ' >> $@.tmp
261 echo '#define SAX_EXPORT ' >> $@.tmp
262 echo '#define STDMETHOD(a) NS_IMETHOD a ' >> $@.tmp
263 echo '#define XERCES_CPP_NAMESPACE_BEGIN ' >> $@.tmp
264 echo '#define XERCES_CPP_NAMESPACE_END ' >> $@.tmp
265
266 echo '#define CTXAllSUFF(var) var##R3 ' >> $@.tmp
267 echo '#define CTXSUFF(var) var##HC ' >> $@.tmp
268 echo '#define OTHERCTXSUFF(var) var##GC ' >> $@.tmp
269 echo '#define CTXALLMID(first, last) first##R3##last ' >> $@.tmp
270 echo '#define CTXMID(first, last) first##HC##last ' >> $@.tmp
271 echo '#define OTHERCTXMID(first, last) first##GC##last ' >> $@.tmp
272 echo '#define CTXTYPE(GCType, R3Type, R0Type) R3Type ' >> $@.tmp
273 echo '#define GCPTRTYPE(GCType) GCType ' >> $@.tmp
274 echo '#define GCTYPE(GCType, HCType) GCType ' >> $@.tmp
275 echo '#define HCPTRTYPE(HCType) HCType ' >> $@.tmp
276 echo '#define R0PTRTYPE(R3Type) R3Type ' >> $@.tmp
277 echo '#define R3PTRTYPE(R0Type) R0Type ' >> $@.tmp
278 echo '#define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ ' >> $@.tmp
279 echo '#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction ' >> $@.tmp
280 echo '#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction ' >> $@.tmp
281 echo '#define RTCALL' >> $@.tmp
282 echo '#define DECLINLINE(type) inline type ' >> $@.tmp
283
284 echo '#define PDM_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__ ' >> $@.tmp
285 echo '#define PDM_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction ' >> $@.tmp
286 echo '#define PDM_SRC_POS_ARGS pszFile, iLine, pszFunction ' >> $@.tmp
287 echo '#define PDMDEVINSINT_DECLARED 1' >> $@.tmp
288 echo '#define VBOXCALL' >> $@.tmp
289
290 $(SED) -e '/__cdecl/d' \
291 -e '/^ *# *define.*DECL/!d' \
292 -e '/DECLS/d' \
293 -e '/_SRC_POS_DECL/d' \
294 -e '/declspec/d' \
295 -e 's/# */#/g' \
296 -e 's/ */ /g' \
297 -e '/(type) DECLEXPORT/d' \
298 -e 's/ *VBOXCALL//' \
299 -e 's/ *RTCALL//' \
300 -e 's/(type) DECLIMPORT(type)/(type) type/' \
301 -e '/ DECLASM(type) type/d' \
302 -e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
303 -e '/define *DECLINLINE(type)/d' \
304 \
305 include/iprt/cdefs.h \
306 include/VBox/cdefs.h \
307 >> $@.tmp
308 sort $@.tmp | sort | sed -e 's/$$/\n/' > $@.tmp2
309 $(MV) -f $@.tmp2 $@
310 $(RM) -f $@.tmp $@.tmp2 $@.tmp3
311
312
313## add tools fetching to the 'up' / 'update' target.
314up update::
315# this doesn't work of course if kmk is updated: svn$(HOSTSUFF_EXE) up $(PATH_KBUILD)
316ifndef VBOX_OSE
317 $(MAKE) -C tools fetch
318else
319 $(MAKE) -C tools -f Makefile-ose.kmk fetch
320endif
321
322up2 update2::
323 $(SVN) up src/lib/kStuff
324if1of ($(BUILD_PLATFORM),win os2)
325 $(ECHO) This may fail if kmk.exe is updated.
326endif
327 $(SVN) up kBuild
328
329#
330# Build the additions, all of them.
331#
332# This is currently tailored (hardcoded) for the additions
333# build box. Can make it pretty and configurable later.
334#
335# The fetching must be done in serial fashion, while the building
336# should be more flexible wrt to -jN.
337#
338additions-fetch:
339 + $(KMK) -C tools fetch
340 + $(KMK) -C tools fetch BUILD_TARGET_ARCH=x86 BUILD_TARGET=linux
341# + $(KMK) -C tools fetch BUILD_TARGET_ARCH=x86 BUILD_TARGET=os2
342 + $(KMK) -C tools fetch BUILD_TARGET_ARCH=x86 BUILD_TARGET=solaris
343 + $(KMK) -C tools fetch BUILD_TARGET_ARCH=x86 BUILD_TARGET=win
344
345
346additions-build: \
347 additions-build-win.x86 \
348 additions-build-solaris.x86 \
349 additions-build-os2.x86 \
350 additions-build-linux.x86
351
352VBOX_ADDITIONS_BUILD = VBOX_ONLY_ADDITIONS=1 VBOX_WITHOUT_ADDITIONS_ISO=1 BUILD_TYPE=$(BUILD_TYPE) all packing
353
354additions-build-win.x86:
355ifeq ($(BUILD_TARGET),win)
356 + $(KMK) BUILD_TARGET_ARCH=x86 VBOX_ADDITIONS_WIN32_ONLY=1 $(VBOX_ADDITIONS_BUILD)
357else
358 ssh vbox@192.168.27.5 " cd c:/vbox/add && ./tools/env.sh --no-wine kmk BUILD_TARGET_ARCH=x86 VBOX_ADDITIONS_WIN32_ONLY=1 $(VBOX_ADDITIONS_BUILD) "
359endif
360
361additions-build-solaris.x86:
362#ifeq ($(BUILD_TARGET),solaris)
363# + $(KMK) BUILD_TARGET_ARCH=x86 $(VBOX_ADDITIONS_BUILD)
364#else
365# ssh vbox@192.168.27.4 " cd /mnt/vbox/add && ./tools/env.sh --no-wine kmk BUILD_TARGET_ARCH=x86 $(VBOX_ADDITIONS_BUILD) "
366#endif
367
368additions-build-os2.x86:
369#ifeq ($(BUILD_TARGET),os2)
370# + $(KMK) BUILD_TARGET_ARCH=x86
371#else
372# ssh vbox@192.168.27.3 " cd /mnt/vbox/add && ./tools/env.sh --no-wine kmk BUILD_TARGET_ARCH=x86 $(VBOX_ADDITIONS_BUILD) "
373#endif
374
375additions-build-linux.x86:
376ifeq ($(BUILD_TARGET),linux)
377 + $(KMK) BUILD_TARGET_ARCH=x86 VBOX_ADDITIONS_LINUX_ONLY=1 $(VBOX_ADDITIONS_BUILD)
378else
379 ssh vbox@192.168.27.2 " cd /mnt/vbox/add && ./tools/env.sh --no-wine kmk BUILD_TARGET_ARCH=x86 VBOX_ADDITIONS_LINUX_ONLY=1 $(VBOX_ADDITIONS_BUILD) "
380endif
381
382
383additions-packing:
384 + $(KMK) VBOX_ONLY_ADDITIONS=1 \
385 VBOX_WITH_ADDITIONS_ISO.win.x86=1 \
386 VBOX_WITH_ADDITIONS_ISO.linux.x86=1 \
387 -C src/VBox/Additions \
388 $(VBOX_PATH_ADDITIONS)/VBoxGuestAdditions.iso
389
390
391#
392# Generate VirtualBox-OSE-x.x.x.tar.bz2 tarballs for distribution
393#
394# - includes kBuild
395# - must be executed on an OSE checkout
396#
397
398# the path where to store the tarball
399TARBALLPATH ?= $(shell cd $(PATH_ROOT)/..; pwd)
400#TARBALLPATH ?= $(abspath $(PATH_ROOT)/..) - this should also do the trick without spawning a shell.
401# the root directory inside the tarball
402TARBALLROOT ?= VirtualBox-$(VBOX_VERSION_STRING)
403# the name of the tarball file
404TARBALLNAME ?= VirtualBox-$(VBOX_VERSION_STRING).tar.bz2
405snapshot:
406 @$(call MSG_L1,Creating tarball $(TARBALLPATH)/$(TARBALLNAME))
407 @if [ -d "$(PATH_ROOT)/src/VBox/Devices/USB" ]; then echo; echo "Found USB stuff, refused to build OSE tarball!"; echo; exit 1; fi
408 $(QUIET)$(MKDIR) -p $(TARBALLPATH)
409 $(QUIET)$(RM) -f $(wildcard $(TARBALLPATH)/VirtualBox*)
410 $(QUIET)$(LN_SYMLINK) $(PATH_ROOT) $(TARBALLPATH)/$(TARBALLROOT)
411 $(QUIET)tar -cjh --owner 0 --group 0 --totals \
412 --exclude=.svn \
413 --exclude=$(TARBALLROOT)/out \
414 --exclude=$(TARBALLROOT)/env.sh \
415 --exclude=$(TARBALLROOT)/configure.log \
416 --exclude=$(TARBALLROOT)/AutoConfig.kmk \
417 --exclude=$(TARBALLROOT)/LocalConfig.kmk \
418 -C $(TARBALLPATH) \
419 -f $(TARBALLPATH)/$(TARBALLNAME) \
420 $(TARBALLROOT)
421 $(QUIET)$(RM) $(TARBALLPATH)/$(TARBALLROOT)
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