Changeset 278 for trunk/openjdk/make
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 18 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/make/Defs-internal.gmk
r2 r278 1 1 # 2 # Copyright 1995-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1995, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 29 29 # 30 30 31 # Always true 32 OPENJDK=true 33 31 34 # Define absolute paths to TOPDIRs 32 ABS_CONTROL_TOPDIR:=$(call OptFullPath,"$(CONTROL_TOPDIR)")33 35 ABS_LANGTOOLS_TOPDIR:=$(call OptFullPath,"$(LANGTOOLS_TOPDIR)") 34 36 ABS_CORBA_TOPDIR:=$(call OptFullPath,"$(CORBA_TOPDIR)") … … 37 39 ABS_JDK_TOPDIR:=$(call OptFullPath,"$(JDK_TOPDIR)") 38 40 ABS_HOTSPOT_TOPDIR:=$(call OptFullPath,"$(HOTSPOT_TOPDIR)") 39 ABS_INSTALL_TOPDIR:=$(call OptFullPath,"$(INSTALL_TOPDIR)")40 ABS_SPONSORS_TOPDIR:=$(call OptFullPath,"$(SPONSORS_TOPDIR)")41 ABS_DEPLOY_TOPDIR:=$(call OptFullPath,"$(DEPLOY_TOPDIR)")42 41 43 42 # Macro to return true or false if a file exists and is readable … … 95 94 BUILD_JDK := $(JDK_SRC_AVAILABLE) 96 95 endif 97 ifeq ($(JDK_SRC_AVAILABLE),true) 98 JDK_CLOSED_SRC_AVAILABLE := $(call MkExists,$(JDK_TOPDIR)/src/closed) 99 ifndef OPENJDK 100 ifeq ($(JDK_CLOSED_SRC_AVAILABLE),false) 101 OPENJDK = true 102 endif 103 endif 96 97 # These could be over-ridden on the command line or in environment 98 ifndef SKIP_PRODUCT_BUILD 99 SKIP_PRODUCT_BUILD = false 104 100 endif 105 106 DEPLOY_SRC_AVAILABLE := $(call MkExists,$(DEPLOY_TOPDIR)/make/Makefile) 107 ifndef BUILD_DEPLOY 108 BUILD_DEPLOY := $(DEPLOY_SRC_AVAILABLE) 101 ifndef SKIP_FASTDEBUG_BUILD 102 SKIP_FASTDEBUG_BUILD = true 109 103 endif 110 111 INSTALL_SRC_AVAILABLE := $(call MkExists,$(INSTALL_TOPDIR)/make/Makefile) 112 ifndef BUILD_INSTALL 113 ifdef DEV_ONLY 114 BUILD_INSTALL := false 115 else 116 BUILD_INSTALL := $(INSTALL_SRC_AVAILABLE) 117 endif 104 ifndef SKIP_DEBUG_BUILD 105 SKIP_DEBUG_BUILD = true 118 106 endif 119 120 SPONSORS_SRC_AVAILABLE := $(call MkExists,$(SPONSORS_TOPDIR)/make/Makefile) 121 ifndef BUILD_SPONSORS 122 ifdef DEV_ONLY 123 BUILD_SPONSORS := false 124 else 125 BUILD_SPONSORS := $(SPONSORS_SRC_AVAILABLE) 126 endif 127 endif 128 129 130 # Do we build the source and openjdk binary plug bundles? 131 BUNDLE_RULES = $(JDK_TOPDIR)/make/closed/bundles.gmk 132 BUNDLE_RULES_AVAILABLE := $(call MkExists,$(BUNDLE_RULES)) 133 134 # Current things we do NOT build for OPENJDK 135 ifdef OPENJDK 136 BUILD_DEPLOY = false 137 BUILD_INSTALL = false 138 BUILD_SPONSORS = false 139 BUNDLE_RULES_AVAILABLE := false 140 # These could be over-ridden on the command line or in environment 141 ifndef SKIP_FASTDEBUG_BUILD 142 SKIP_FASTDEBUG_BUILD = true 143 endif 144 ifndef SKIP_DEBUG_BUILD 145 SKIP_DEBUG_BUILD = true 146 endif 147 ifndef SKIP_COMPARE_IMAGES 148 SKIP_COMPARE_IMAGES = true 149 endif 150 SKIP_OPENJDK_BUILD = true 151 else 152 ifndef SKIP_OPENJDK_BUILD 153 SKIP_OPENJDK_BUILD = false 154 endif 107 ifndef SKIP_COMPARE_IMAGES 108 SKIP_COMPARE_IMAGES = true 155 109 endif 156 110 … … 160 114 SKIP_COMPARE_IMAGES = true 161 115 endif 162 ifeq ($(BUILD_DEPLOY), false)163 SKIP_COMPARE_IMAGES = true164 endif165 ifeq ($(BUILD_INSTALL), false)166 SKIP_COMPARE_IMAGES = true167 endif168 116 ifdef DEV_ONLY 169 117 SKIP_COMPARE_IMAGES = true 170 118 endif 171 endif172 173 # Select defaults if these are not set to true or false174 ifndef SKIP_DEBUG_BUILD175 SKIP_DEBUG_BUILD=true176 endif177 ifndef SKIP_FASTDEBUG_BUILD178 SKIP_FASTDEBUG_BUILD=false179 119 endif 180 120 … … 241 181 endif 242 182 243 ifdef FINDBUGS_HOME244 COMMON_BUILD_ARGUMENTS += FINDBUGS_HOME="$(FINDBUGS_HOME)"245 endif246 247 -
trunk/openjdk/make/corba-rules.gmk
r2 r278 1 1 # 2 # Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2001, 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/make/deploy-rules.gmk
r2 r278 1 1 # 2 # Copyright 2002-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/make/hotspot-rules.gmk
r2 r278 1 1 # 2 # Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 74 74 75 75 ifeq ($(ZERO_BUILD), true) 76 HOTSPOT_TARGET := $(HOTSPOT_TARGET)zero 76 ifeq ($(SHARK_BUILD), true) 77 HOTSPOT_TARGET := $(HOTSPOT_TARGET)shark 78 else 79 HOTSPOT_TARGET := $(HOTSPOT_TARGET)zero 80 endif 77 81 endif 78 82 -
trunk/openjdk/make/install-rules.gmk
r2 r278 1 1 # 2 # Copyright 2002-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2002, 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/make/jaxp-rules.gmk
r2 r278 1 1 # 2 # Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2001, 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/make/jaxws-rules.gmk
r2 r278 1 1 # 2 # Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2001, 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/make/jdk-rules.gmk
r2 r278 1 1 # 2 # Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/make/jprt.gmk
r2 r278 1 1 # 2 # Copyright 2006-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 46 46 47 47 jprt_build_fastdebug: fastdebug_build 48 ( $(CD) $(OUTPUTDIR) -fastdebug/j2sdk-image && \48 ( $(CD) $(OUTPUTDIR)/../$(PLATFORM)-$(ARCH)-fastdebug/j2sdk-image && \ 49 49 $(ZIPEXE) -q -r $(JPRT_ARCHIVE_BUNDLE) . ) 50 50 51 51 jprt_build_debug: debug_build 52 ( $(CD) $(OUTPUTDIR) -debug/j2sdk-image && \52 ( $(CD) $(OUTPUTDIR)/../$(PLATFORM)-$(ARCH)-debug/j2sdk-image && \ 53 53 $(ZIPEXE) -q -r $(JPRT_ARCHIVE_BUNDLE) . ) 54 54 -
trunk/openjdk/make/jprt.properties
r2 r278 1 1 # 2 # Copyright 2006-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 27 27 jprt.tools.default.release=openjdk6 28 28 29 # Specific platform list 29 # Specific platform list (For now, Solaris 10 sparc, Solaris 10 x86) 30 30 jprt.build.platforms=\ 31 solaris_sparc_5. 8,\32 solaris_sparcv9_5. 8,\33 solaris_i586_5. 8,\31 solaris_sparc_5.10,\ 32 solaris_sparcv9_5.10,\ 33 solaris_i586_5.10,\ 34 34 solaris_x64_5.10,\ 35 35 linux_i586_2.6,\ … … 40 40 # The different build flavors we want 41 41 jprt.build.flavors=product,fastdebug 42 jprt.run.flavors=c1,c2 43 jprt.solaris_sparcv9.run.flavors=c2 44 jprt.solaris_x64.run.flavors=c2 45 jprt.windows_x64.run.flavors=c2 46 jprt.linux_x64.run.flavors=c2 47 jprt.run.flavor.c1.option=-client 48 jprt.run.flavor.c2.option=-server 42 49 43 # Explicitly designate what the 32bit match is for the 64bit build 44 jprt.solaris_sparcv9.build.platform.match32=solaris_sparc_5.8 45 jprt.solaris_sparcv9_5.8.build.platform.match32=solaris_sparc_5.8 46 jprt.solaris_sparcv9_5.10.build.platform.match32=solaris_sparc_5.8 47 jprt.solaris_x64.build.platform.match32=solaris_i586_5.8 48 jprt.solaris_x64_5.8.build.platform.match32=solaris_i586_5.8 49 jprt.solaris_x64_5.10.build.platform.match32=solaris_i586_5.8 50 # Shortened list of vm tests 51 jprt.test.targets= \ 52 *-product-*-jvm98, \ 53 *-product-*-scimark, \ 54 *-product-*-runThese, \ 55 *-product-*-GCBasher_default, \ 56 *-product-*-GCOld_default, \ 57 *-product-*-jbb_default 50 58 51 # Standard list of jprt test targets for this workspace 52 jprt.test.targets=*-*-*-jvm98 59 # Test targets in test/Makefile 60 # Not ready yet: *-product-*-langtools_jtreg 61 jprt.make.rule.test.targets= \ 62 *-product-*-jdk_beans1, \ 63 *-product-*-jdk_beans2, \ 64 *-product-*-jdk_beans3, \ 65 *-product-*-jdk_io, \ 66 *-product-*-jdk_lang, \ 67 *-product-*-jdk_management1, \ 68 *-product-*-jdk_management2, \ 69 *-product-*-jdk_math, \ 70 *-product-*-jdk_misc, \ 71 *-product-*-jdk_net, \ 72 *-product-*-jdk_nio, \ 73 *-product-*-jdk_security1, \ 74 *-product-*-jdk_security2, \ 75 *-product-*-jdk_security3, \ 76 *-product-*-jdk_text, \ 77 *-product-*-jdk_tools1, \ 78 *-product-*-jdk_tools2, \ 79 *-product-*-jdk_util 53 80 54 # Directories needed to build 55 jprt.bundle.exclude.src.dirs=build dist 81 # Not Ready Yet: 82 # *-product-*-jdk_awt 83 # *-product-*-jdk_rmi 84 # *-product-*-jdk_swing 56 85 86 # Directories to be excluded from source bundles 87 jprt.bundle.exclude.src.dirs=build dist webrev 88 -
trunk/openjdk/make/langtools-rules.gmk
r2 r278 1 1 # 2 # Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2001, 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/make/motif-rules.gmk
r2 r278 1 1 # 2 # Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2001, 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/make/sanity-rules.gmk
r2 r278 1 1 # 2 # Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 34 34 endif 35 35 36 ifeq ($(BUILD_DEPLOY), true)37 sanity:: deploy-sanity38 endif39 40 36 ifeq ($(BUILD_JDK), true) 41 37 sanity:: jdk-sanity 42 38 endif 43 39 44 # Only need these sanity rules when not doing a debug build45 ifeq ($(DEBUG_NAME),)46 47 ifeq ($(BUILD_INSTALL), true)48 sanity:: install-sanity49 endif50 51 ifeq ($(BUILD_SPONSORS), true)52 sanity:: sponsors-sanity53 endif54 55 endif56 57 40 sanity:: post-sanity 58 41 … … 68 51 69 52 # this should be the last rule in any target's sanity rule. 70 post-sanity post-sanity-hotspot post-sanity-jdk post-sanity-motif post-sanity-install post-sanity-deploy:53 post-sanity post-sanity-hotspot post-sanity-jdk: 71 54 @if [ -r $(MESSAGE_FILE) ]; then \ 72 55 $(ECHO) "" ; \ … … 191 174 endif 192 175 endif 193 ifeq ($(DEPLOY_SRC_AVAILABLE), true) 194 ifneq ($(BUILD_DEPLOY), true) 195 @$(ECHO) "WARNING: You are not building the DEPLOY sources.\n" \ 196 " This will result in a development-only\n" \ 197 " build of the JDK, lacking the plugin and javaws binaries.\n" \ 198 "" >> $(WARNING_FILE) 199 endif 200 endif 201 ifeq ($(INSTALL_SRC_AVAILABLE), true) 202 ifneq ($(BUILD_INSTALL), true) 203 @$(ECHO) "WARNING: You are not building the INSTALL sources.\n" \ 204 " This will result in a development-only\n" \ 205 " build of the JDK, lacking the installation bundles\n" \ 206 "" >> $(WARNING_FILE) 207 endif 208 endif 209 ifeq ($(SPONSORS_SRC_AVAILABLE), true) 210 ifneq ($(BUILD_SPONSORS), true) 211 @$(ECHO) "WARNING: You are not building the SPONSORS sources.\n" \ 212 "" >> $(WARNING_FILE) 213 endif 214 endif 215 ifndef OPENJDK 216 ifdef NO_DOCS 176 ifdef NO_DOCS 217 177 @$(ECHO) "WARNING: Your build environment has the variable NO_DOCS\n" \ 218 178 " defined. This will result in a development-only\n" \ … … 220 180 " build.\n" \ 221 181 "" >> $(WARNING_FILE) 222 endif223 182 endif 224 183 ifdef NO_IMAGES … … 295 254 @$(ECHO) " CWD = `$(PWD)`" >> $(MESSAGE_FILE) 296 255 @$(ECHO) " TOPDIR = $(TOPDIR)" >> $(MESSAGE_FILE) 297 @$(ECHO) " CONTROL_TOPDIR = $(CONTROL_TOPDIR)" >> $(MESSAGE_FILE)298 256 ifeq ($(LANGTOOLS_SRC_AVAILABLE), true) 299 257 @$(ECHO) " LANGTOOLS_TOPDIR = $(LANGTOOLS_TOPDIR)" >> $(MESSAGE_FILE) … … 316 274 ifeq ($(MOTIF_SRC_AVAILABLE), true) 317 275 @$(ECHO) " MOTIF_TOPDIR = $(MOTIF_TOPDIR)" >> $(MESSAGE_FILE) 318 endif319 ifeq ($(DEPLOY_SRC_AVAILABLE), true)320 @$(ECHO) " DEPLOY_TOPDIR = $(DEPLOY_TOPDIR)" >> $(MESSAGE_FILE)321 endif322 ifeq ($(INSTALL_SRC_AVAILABLE), true)323 @$(ECHO) " INSTALL_TOPDIR = $(INSTALL_TOPDIR)" >> $(MESSAGE_FILE)324 endif325 ifeq ($(SPONSORS_SRC_AVAILABLE), true)326 @$(ECHO) " SPONSORS_TOPDIR = $(SPONSORS_TOPDIR)" >> $(MESSAGE_FILE)327 276 endif 328 277 @$(ECHO) "" >> $(MESSAGE_FILE) … … 352 301 @$(ECHO) " BUILD_JDK = $(BUILD_JDK) " >> $(MESSAGE_FILE) 353 302 endif 354 ifeq ($(DEPLOY_SRC_AVAILABLE), true)355 @$(ECHO) " BUILD_DEPLOY = $(BUILD_DEPLOY) " >> $(MESSAGE_FILE)356 endif357 ifeq ($(INSTALL_SRC_AVAILABLE), true)358 @$(ECHO) " BUILD_INSTALL = $(BUILD_INSTALL) " >> $(MESSAGE_FILE)359 endif360 ifeq ($(SPONSORS_SRC_AVAILABLE), true)361 @$(ECHO) " BUILD_SPONSORS = $(BUILD_SPONSORS) " >> $(MESSAGE_FILE)362 endif363 303 @$(ECHO) " DEBUG_CLASSFILES = $(DEBUG_CLASSFILES) " >> $(MESSAGE_FILE) 364 304 @$(ECHO) " DEBUG_BINARIES = $(DEBUG_BINARIES) " >> $(MESSAGE_FILE) … … 366 306 367 307 .PHONY: sanity settings pre-sanity insane \ 368 post-sanity post-sanity-hotspot post-sanity-jdk post-sanity-motif \ 369 post-sanity-install post-sanity-deploy \ 308 post-sanity post-sanity-hotspot post-sanity-jdk \ 370 309 alt_bootdir bootdir -
trunk/openjdk/make/sponsors-rules.gmk
r2 r278 1 1 # 2 # Copyright 2006-2007 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 2007, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 -
trunk/openjdk/make/templates/bsd-header
r2 r278 12 12 documentation and/or other materials provided with the distribution. 13 13 14 - Neither the name of Sun Microsystemsnor the names of its14 - Neither the name of Oracle nor the names of its 15 15 contributors may be used to endorse or promote products derived 16 16 from this software without specific prior written permission. -
trunk/openjdk/make/templates/gpl-cp-header
r2 r278 1 Copyright %YEARS% Sun Microsystems, Inc. All Rights Reserved.1 Copyright (c) %YEARS%, Oracle and/or its affiliates. All rights reserved. 2 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 3 4 4 This code is free software; you can redistribute it and/or modify it 5 5 under the terms of the GNU General Public License version 2 only, as 6 published by the Free Software Foundation. Sundesignates this6 published by the Free Software Foundation. Oracle designates this 7 7 particular file as subject to the "Classpath" exception as provided 8 by Sunin the LICENSE file that accompanied this code.8 by Oracle in the LICENSE file that accompanied this code. 9 9 10 10 This code is distributed in the hope that it will be useful, but WITHOUT … … 18 18 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 19 19 20 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,21 CA 95054 USA or visit www.sun.com if you need additional information or 22 have anyquestions.20 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 or visit www.oracle.com if you need additional information or have any 22 questions. -
trunk/openjdk/make/templates/gpl-header
r2 r278 1 Copyright %YEARS% Sun Microsystems, Inc. All Rights Reserved.1 Copyright (c) %YEARS%, Oracle and/or its affiliates. All rights reserved. 2 2 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 3 … … 16 16 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 17 17 18 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,19 CA 95054 USA or visit www.sun.com if you need additional information or 20 have anyquestions.18 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 19 or visit www.oracle.com if you need additional information or have any 20 questions.
Note:
See TracChangeset
for help on using the changeset viewer.