make/Makefile

Mon, 22 Feb 2010 21:37:13 +0000

author
andrew
date
Mon, 22 Feb 2010 21:37:13 +0000
changeset 501
f25efdb55c99
parent 462
aa06467be3a2
child 531
de6375751eb7
permissions
-rw-r--r--

6928623: Behaviour of VERBOSE=true on langtools build
Summary: VERBOSE=true causes -diagnostics to be passed to ant rather than -debug
Reviewed-by: jjg

duke@1 1 #
duke@1 2 # Copyright 2007 Sun Microsystems, Inc. All Rights Reserved.
duke@1 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 #
duke@1 5 # This code is free software; you can redistribute it and/or modify it
duke@1 6 # under the terms of the GNU General Public License version 2 only, as
duke@1 7 # published by the Free Software Foundation. Sun designates this
duke@1 8 # particular file as subject to the "Classpath" exception as provided
duke@1 9 # by Sun in the LICENSE file that accompanied this code.
duke@1 10 #
duke@1 11 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 # version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 # accompanied this code).
duke@1 16 #
duke@1 17 # You should have received a copy of the GNU General Public License version
duke@1 18 # 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 #
duke@1 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@1 22 # CA 95054 USA or visit www.sun.com if you need additional information or
duke@1 23 # have any questions.
duke@1 24 #
duke@1 25
duke@1 26 # Makefile for langtools: wrapper around Ant build.xml file
duke@1 27
duke@1 28 #
duke@1 29 # On Solaris, the 'make' utility from Sun will not work with these makefiles.
duke@1 30 # This little rule is only understood by Sun's make, and is harmless
duke@1 31 # when seen by the GNU make tool. If using Sun's make, this causes the
duke@1 32 # make command to fail.
duke@1 33 #
duke@1 34 SUN_MAKE_TEST:sh = @echo "ERROR: PLEASE USE GNU VERSION OF MAKE"; exit 33
duke@1 35
duke@1 36 #
duke@1 37 # Minimal platform defs
duke@1 38 # Need FullPath because we can't rely on gnumake abspath, until we use v3.81
duke@1 39 #
duke@1 40
duke@1 41 SYSTEM_UNAME := $(shell uname)
duke@1 42
duke@1 43 ifeq ($(SYSTEM_UNAME), Windows_NT)
duke@1 44 DEV_NULL = NUL
duke@1 45 else
duke@1 46 ifneq (,$(findstring CYGWIN,$(SYSTEM_UNAME)))
duke@1 47 DEV_NULL = NUL
duke@1 48 USING_CYGWIN = true
duke@1 49 else
duke@1 50 DEV_NULL = /dev/null
duke@1 51 endif
duke@1 52 endif
duke@1 53
duke@1 54 ifdef USING_CYGWIN
duke@1 55 define FullPath
duke@1 56 $(shell cygpath -a -s -m $1 2> $(DEV_NULL))
duke@1 57 endef
duke@1 58 else
duke@1 59 define FullPath
duke@1 60 $(shell cd $1 2> $(DEV_NULL) && pwd)
duke@1 61 endef
duke@1 62 endif
duke@1 63
duke@1 64 #
duke@1 65 # Makefile args
duke@1 66 #
duke@1 67
duke@1 68 ifdef QUIET
duke@1 69 ANT_OPTIONS += -quiet
duke@1 70 endif
duke@1 71
duke@1 72 ifdef VERBOSE
andrew@501 73 ANT_OPTIONS += -verbose -debug
duke@1 74 endif
duke@1 75
duke@1 76 ifdef JDK_VERSION
duke@1 77 ANT_OPTIONS += -Djdk.version=$(JDK_VERSION)
duke@1 78 endif
duke@1 79
duke@1 80 ifdef FULL_VERSION
duke@1 81 ANT_OPTIONS += -Dfull.version='$(FULL_VERSION)' # will contain spaces
duke@1 82 endif
duke@1 83
duke@1 84 ifdef MILESTONE
jjg@172 85 ifneq ($(MILESTONE),fcs)
duke@1 86 ANT_OPTIONS += -Dmilestone=$(MILESTONE)
jjg@172 87 else
jjg@172 88 ANT_OPTIONS += -Drelease=$(JDK_VERSION)
jjg@172 89 endif
duke@1 90 endif
duke@1 91
duke@1 92 ifdef BUILD_NUMBER
duke@1 93 ANT_OPTIONS += -Dbuild.number=$(BUILD_NUMBER)
duke@1 94 else
duke@1 95 ifdef JDK_BUILD_NUMBER
duke@1 96 ANT_OPTIONS += -Dbuild.number=$(JDK_BUILD_NUMBER)
duke@1 97 endif
duke@1 98 endif
duke@1 99
duke@1 100 ifeq ($(VARIANT), DBG)
duke@1 101 ANT_OPTIONS += -Djavac.debug=true
duke@1 102 else
duke@1 103 ifeq ($(VARIANT), OPT)
duke@1 104 ANT_OPTIONS += -Djavac.debug=false
duke@1 105 endif
duke@1 106 endif
duke@1 107
aph@271 108 ifeq ($(DEBUG_CLASSFILES), true)
aph@271 109 ANT_OPTIONS += -Djavac.debug=true
aph@273 110 ANT_OPTIONS += -Ddebug.classfiles=true
aph@271 111 endif
aph@271 112
duke@1 113 # Note: jdk/make/common/Defs.gmk uses LANGUAGE_VERSION (-source NN)
duke@1 114 # and the somewhat misnamed CLASS_VERSION (-target NN)
duke@1 115 ifdef TARGET_CLASS_VERSION
duke@1 116 ANT_OPTIONS += -Djavac.target=$(TARGET_CLASS_VERSION)
duke@1 117 else
duke@1 118 ifdef JAVAC_TARGET_ARG
duke@1 119 ANT_OPTIONS += -Djavac.target=$(JAVAC_TARGET_ARG)
duke@1 120 endif
duke@1 121 endif
duke@1 122
jjg@286 123 ifdef SOURCE_LANGUAGE_VERSION
jjg@286 124 ANT_OPTIONS += -Djavac.source=$(SOURCE_LANGUAGE_VERSION)
jjg@286 125 else
jjg@286 126 ifdef JAVAC_SOURCE_ARG
jjg@286 127 ANT_OPTIONS += -Djavac.source=$(JAVAC_SOURCE_ARG)
jjg@286 128 endif
jjg@286 129 endif
jjg@286 130
duke@1 131 ifdef ALT_BOOTDIR
duke@1 132 ANT_OPTIONS += -Dboot.java.home=$(ALT_BOOTDIR)
duke@1 133 ANT_JAVA_HOME = JAVA_HOME=$(ALT_BOOTDIR)
duke@1 134 endif
duke@1 135
jjg@441 136 # To facilitate bootstrapping, much of langtools can be compiled with (just)
jjg@441 137 # a boot JDK. However, some source files need to be compiled against
jjg@441 138 # new JDK API. In a bootstrap build, an import JDK may not be available,
jjg@441 139 # so build.xml can also build against the source files in a jdk repo,
jjg@441 140 # in which case it will automatically generate stub files for the new JDK API.
jjg@441 141 ifdef JDK_TOPDIR
jjg@441 142 ANT_OPTIONS += -Dimport.jdk=$(JDK_TOPDIR)
jjg@441 143 else
jjg@441 144 ifdef ALT_JDK_TOPDIR
jjg@441 145 ANT_OPTIONS += -Dimport.jdk=$(ALT_JDK_TOPDIR)
jjg@441 146 else
jjg@462 147 ifdef ALT_JDK_IMPORT_PATH
jjg@462 148 ANT_OPTIONS += -Dimport.jdk=$(ALT_JDK_IMPORT_PATH)
jjg@441 149 endif
jjg@441 150 endif
jjg@441 151 endif
jjg@441 152
duke@1 153 ifdef ALT_OUTPUTDIR
duke@1 154 OUTPUTDIR = $(ALT_OUTPUTDIR)
duke@1 155 ANT_OPTIONS += -Dbuild.dir=$(ALT_OUTPUTDIR)/build
duke@1 156 ANT_OPTIONS += -Ddist.dir=$(ALT_OUTPUTDIR)/dist
duke@1 157 else
duke@1 158 OUTPUTDIR = ..
duke@1 159 endif
duke@1 160 #ABS_OUTPUTDIR = $(abspath $(OUTPUTDIR))
duke@1 161 ABS_OUTPUTDIR = $(call FullPath,$(OUTPUTDIR))
duke@1 162
duke@1 163 ANT_TMPDIR = $(ABS_OUTPUTDIR)/build/ant-tmp
duke@1 164 ANT_OPTS = ANT_OPTS=-Djava.io.tmpdir='$(ANT_TMPDIR)'
duke@1 165
duke@1 166 ifdef FINDBUGS_HOME
duke@1 167 ANT_OPTIONS += -Dfindbugs.home=$(FINDBUGS_HOME)
duke@1 168 endif
duke@1 169
duke@1 170 ifdef ANT_HOME
duke@1 171 ANT = $(ANT_HOME)/bin/ant
duke@1 172 ifneq ($(shell test -x $(ANT) && echo OK), OK)
duke@1 173 $(error $(ANT) not found -- please update ANT_HOME)
duke@1 174 endif
duke@1 175 else
duke@1 176 ANT = ant
duke@1 177 ifneq ($(shell test -x "`which $(ANT)`" && echo OK), OK)
duke@1 178 $(error 'ant' not found -- please set ANT_HOME or put 'ant' on your PATH)
duke@1 179 endif
duke@1 180 endif
duke@1 181
duke@1 182 # Default target and expected 'do everything' target
duke@1 183 all: build
duke@1 184
duke@1 185 # Standard make clobber target
duke@1 186 clobber: clean
duke@1 187
duke@1 188 # All ant targets of interest
duke@1 189 ANT_TARGETS = build clean sanity post-sanity diagnostics # for now
duke@1 190
duke@1 191 # Create a make target for each
duke@1 192 $(ANT_TARGETS):
duke@1 193 @ mkdir -p $(OUTPUTDIR)/build $(ANT_TMPDIR)
duke@1 194 $(ANT_JAVA_HOME) $(ANT_OPTS) $(ANT) -diagnostics > $(OUTPUTDIR)/build/ant-diagnostics.log
duke@1 195 $(ANT_JAVA_HOME) $(ANT_OPTS) $(ANT) $(ANT_OPTIONS) $@
duke@1 196
duke@1 197 #-------------------------------------------------------------------
duke@1 198 #
duke@1 199 # Targets for Sun's internal JPRT build system
duke@1 200
duke@1 201 CD = cd
duke@1 202 ZIP = zip
duke@1 203
duke@1 204 JPRT_ARCHIVE_BUNDLE=$(ABS_OUTPUTDIR)/$(JPRT_BUILD_FLAVOR)-bundle.zip
duke@1 205
duke@1 206 jprt_build_product jprt_build_debug jprt_build_fastdebug: all
duke@1 207 ( $(CD) $(OUTPUTDIR) && \
duke@1 208 $(ZIP) -q -r $(JPRT_ARCHIVE_BUNDLE) build dist )
duke@1 209
duke@1 210 #-------------------------------------------------------------------
duke@1 211
duke@1 212 # Declare these phony (not filenames)
duke@1 213 .PHONY: $(ANT_TARGETS) all clobber \
duke@1 214 jprt_build_product jprt_build_debug jprt_build_fastdebug

mercurial