blob: 12f13281abf131e5f1981379e507d0f5aec71c3d [file] [log] [blame]
J. Duke74f47792007-12-01 00:00:00 +00001#
Kelly O'Hair502320f2011-04-06 20:15:38 -07002# Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
J. Duke74f47792007-12-01 00:00:00 +00003# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# This code is free software; you can redistribute it and/or modify it
6# under the terms of the GNU General Public License version 2 only, as
Kelly O'Hair149a47c2010-05-25 15:52:44 -07007# published by the Free Software Foundation. Oracle designates this
J. Duke74f47792007-12-01 00:00:00 +00008# particular file as subject to the "Classpath" exception as provided
Kelly O'Hair149a47c2010-05-25 15:52:44 -07009# by Oracle in the LICENSE file that accompanied this code.
J. Duke74f47792007-12-01 00:00:00 +000010#
11# This code is distributed in the hope that it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14# version 2 for more details (a copy is included in the LICENSE file that
15# accompanied this code).
16#
17# You should have received a copy of the GNU General Public License version
18# 2 along with this work; if not, write to the Free Software Foundation,
19# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20#
Kelly O'Hair149a47c2010-05-25 15:52:44 -070021# 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.
J. Duke74f47792007-12-01 00:00:00 +000024#
25
Kelly O'Hair31015d22009-09-21 13:54:55 -070026# Makefile wrapper around Ant build.xml file
J. Duke74f47792007-12-01 00:00:00 +000027
28#
29# On Solaris, the 'make' utility from Sun will not work with these makefiles.
30# This little rule is only understood by Sun's make, and is harmless
31# when seen by the GNU make tool. If using Sun's make, this causes the
32# make command to fail.
33#
34SUN_MAKE_TEST:sh = @echo "ERROR: PLEASE USE GNU VERSION OF MAKE"; exit 33
35
36ifdef QUIET
37 ANT_OPTIONS += -quiet
38endif
39
40ifdef VERBOSE
41 ANT_OPTIONS += -verbose
42endif
43
Kelly O'Hair31015d22009-09-21 13:54:55 -070044ifeq ($(VARIANT), OPT)
45 ifneq ($(DEBUG_CLASSFILES), true)
J. Duke74f47792007-12-01 00:00:00 +000046 ANT_OPTIONS += -Djavac.debug=false
47 endif
48endif
49
50# Note: jdk/make/common/Defs.gmk uses LANGUAGE_VERSION (-source NN)
51# and the somewhat misnamed CLASS_VERSION (-target NN)
52ifdef TARGET_CLASS_VERSION
53 ANT_OPTIONS += -Djavac.target=$(TARGET_CLASS_VERSION)
54else
55 ifdef JAVAC_TARGET_ARG
56 ANT_OPTIONS += -Djavac.target=$(JAVAC_TARGET_ARG)
57 endif
Kelly O'Hair31015d22009-09-21 13:54:55 -070058endif
Jonathan Gibbons3cba2872009-05-20 13:45:44 -070059
60ifdef SOURCE_LANGUAGE_VERSION
61 ANT_OPTIONS += -Djavac.source=$(SOURCE_LANGUAGE_VERSION)
62else
63 ifdef JAVAC_SOURCE_ARG
64 ANT_OPTIONS += -Djavac.source=$(JAVAC_SOURCE_ARG)
65 endif
66endif
J. Duke74f47792007-12-01 00:00:00 +000067
Kelly O'Haircafa9bd2010-06-17 10:50:14 -070068# If downloads are allowed
69ifeq ($(ALLOW_DOWNLOADS),true)
70 ANT_OPTIONS += -Dallow.downloads=true
71endif
72
Kelly O'Hair31015d22009-09-21 13:54:55 -070073# Figure out the platform we are using
74_SYSTEM_UNAME := $(shell uname)
75_PLATFORM_KIND = unix
76ifeq ($(_SYSTEM_UNAME), Windows_NT)
77 _PLATFORM_KIND = windows
J. Duke74f47792007-12-01 00:00:00 +000078endif
Kelly O'Hair31015d22009-09-21 13:54:55 -070079ifneq (,$(findstring CYGWIN,$(_SYSTEM_UNAME)))
80 _PLATFORM_KIND = windows
81endif
82
83# Where is /java in case we need it
84ifdef ALT_SLASH_JAVA
85 _SLASHJAVA = $(ALT_SLASH_JAVA)
86else
87 ifeq ($(_PLATFORM_KIND), windows)
88 _SLASHJAVA=J:/
89 else
90 _SLASHJAVA=/java
91 endif
92endif
93
J. Duke74f47792007-12-01 00:00:00 +000094ifdef ALT_OUTPUTDIR
95 OUTPUTDIR = $(ALT_OUTPUTDIR)
Kelly O'Hair31015d22009-09-21 13:54:55 -070096 ANT_OPTIONS += -Doutput.dir=$(ALT_OUTPUTDIR)
J. Duke74f47792007-12-01 00:00:00 +000097else
98 OUTPUTDIR = ..
99endif
J. Duke74f47792007-12-01 00:00:00 +0000100
101ifdef ALT_LANGTOOLS_DIST
Kelly O'Hair31015d22009-09-21 13:54:55 -0700102 ifdef ALT_BOOTDIR
103 ANT_JAVA_HOME = JAVA_HOME=$(ALT_BOOTDIR)
Kelly O'Hair59ea6ab2009-11-11 11:17:51 -0800104 ANT_OPTIONS += -Djdk.home=$(ALT_BOOTDIR)
Kelly O'Hair31015d22009-09-21 13:54:55 -0700105 endif
J. Duke74f47792007-12-01 00:00:00 +0000106 ANT_OPTIONS += -Dbootstrap.dir=$(ALT_LANGTOOLS_DIST)/bootstrap
Kelly O'Hair31015d22009-09-21 13:54:55 -0700107else
108 ifdef ALT_JDK_IMPORT_PATH
109 ANT_JAVA_HOME = JAVA_HOME=$(ALT_JDK_IMPORT_PATH)
Kelly O'Hair59ea6ab2009-11-11 11:17:51 -0800110 ANT_OPTIONS += -Djdk.home=$(ALT_JDK_IMPORT_PATH)
Kelly O'Hair31015d22009-09-21 13:54:55 -0700111 endif
J. Duke74f47792007-12-01 00:00:00 +0000112endif
113
114ifdef ANT_HOME
115 ANT = $(ANT_HOME)/bin/ant
116 ifneq ($(shell test -x $(ANT); echo $$?), 0)
117 $(error "$(ANT) not found; please update ANT_HOME")
118 endif
119else
120 ANT = ant
121 ifneq ($(shell which $(ANT) > /dev/null; echo $$?), 0)
Kelly O'Hair07f4c192011-03-10 13:21:59 -0800122 $(error "'ant' not found; please set ANT_HOME or put 'ant' on your PATH")
J. Duke74f47792007-12-01 00:00:00 +0000123 endif
124endif
125
126# Default target and expected 'do everything' target
Kelly O'Hair31015d22009-09-21 13:54:55 -0700127default: all
J. Duke74f47792007-12-01 00:00:00 +0000128
129# All ant targets of interest
Kelly O'Hair13c4ad82012-03-04 11:55:34 -0800130ANT_TARGETS = all build dist clobber clean sanity
J. Duke74f47792007-12-01 00:00:00 +0000131
132# Create a make target for each
133$(ANT_TARGETS):
Kelly O'Hair59ea6ab2009-11-11 11:17:51 -0800134 cd .. && $(ANT_JAVA_HOME) $(ANT) $(ANT_OPTIONS) -version
Kelly O'Hair31015d22009-09-21 13:54:55 -0700135 cd .. && $(ANT_JAVA_HOME) $(ANT) $(ANT_OPTIONS) $@
136
Kelly O'Hair13c4ad82012-03-04 11:55:34 -0800137# Just for compat reasons, delete in future.
138drop_included:
139source:
140
Kelly O'Hair31015d22009-09-21 13:54:55 -0700141# Help target
142define helpenvline
143@echo " $1";echo " $2"
144endef
145help:
146 @echo "----------------------------------------------------------"
147 @echo " "
148 @echo "Help information for this Makefile:"
149 @echo " "
150 @echo " Targets (see ant project information for descriptions):"
151 @echo " $(ANT_TARGETS)"
152 @echo " "
153 @echo " Environment or command line variables (all optional):"
154 $(call helpenvline, ALT_BOOTDIR,\
155 "JAVA_HOME to use when running ant")
156 $(call helpenvline, ALT_LANGTOOLS_DIST,\
157 "path to langtools repository dist directory")
158 $(call helpenvline, ALT_OUTPUTDIR,\
159 "path to root of output")
160 $(call helpenvline, DEBUG_CLASSFILES,\
161 "if set makes sure ant property javac.debug is true")
162 $(call helpenvline, JAVAC_SOURCE_ARG,\
163 "if SOURCE_LANGUAGE_VERSION not set uses this to set ant property javac.source")
164 $(call helpenvline, JAVAC_TARGET_ARG,\
165 "if TARGET_CLASS_VERSION not set uses this to set ant property javac.target")
166 $(call helpenvline, SOURCE_LANGUAGE_VERSION,\
167 "if set uses this to set ant property javac.source")
168 $(call helpenvline, QUIET,\
169 "if set will pass -quiet to ant")
170 $(call helpenvline, TARGET_CLASS_VERSION,\
171 "JAVA_HOME to use when running ant")
172 $(call helpenvline, VARIANT,\
173 "if set to OPT means optimized build will set javac.debug to false")
174 $(call helpenvline, VERBOSE,\
175 "if set will pass -verbose to ant")
176 @echo " "
177 @echo "----------------------------------------------------------"
178 @echo " "
179 @echo "Ant project file help information:"
180 @echo " "
181 @$(ANT_JAVA_HOME) cd .. && $(ANT) $(ANT_OPTIONS) -p
182 @echo " "
183 @echo "----------------------------------------------------------"
J. Duke74f47792007-12-01 00:00:00 +0000184
185# Targets for Sun's internal JPRT build system
Kelly O'Hair12028b62008-03-04 10:58:04 -0800186JPRT_ARCHIVE_BUNDLE=$(OUTPUTDIR)/jprt.zip
J. Duke74f47792007-12-01 00:00:00 +0000187jprt_build_product jprt_build_debug jprt_build_fastdebug: all
Kelly O'Hair12028b62008-03-04 10:58:04 -0800188 $(RM) $(JPRT_ARCHIVE_BUNDLE)
189 ( cd $(OUTPUTDIR)/dist && \
Kelly O'Hair31015d22009-09-21 13:54:55 -0700190 zip -q -r $(JPRT_ARCHIVE_BUNDLE) . )
J. Duke74f47792007-12-01 00:00:00 +0000191
192# Declare these phony (not filenames)
Kelly O'Hair31015d22009-09-21 13:54:55 -0700193.PHONY: $(ANT_TARGETS) \
J. Duke74f47792007-12-01 00:00:00 +0000194 jprt_build_product jprt_build_debug jprt_build_fastdebug