author | duke |
Wed, 05 Jul 2017 17:56:44 +0200 | |
changeset 11078 | 736a63b854f3 |
parent 9035 | 1255eb81cc2f |
child 11994 | 74f1488b7347 |
permissions | -rw-r--r-- |
2 | 1 |
# |
9035
1255eb81cc2f
7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents:
8583
diff
changeset
|
2 |
# Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
# 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 |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
# |
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 |
# |
|
5506 | 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. |
|
2 | 24 |
# |
25 |
||
26 |
# |
|
27 |
# Makefile for building and packaging all of the JDK and the JRE. See |
|
28 |
# also included files. |
|
29 |
# |
|
30 |
||
31 |
BUILDDIR=. |
|
32 |
include $(BUILDDIR)/common/Defs.gmk |
|
33 |
||
34 |
# |
|
35 |
# Make sure we are clear what the default target is |
|
36 |
# |
|
37 |
default_target: all |
|
38 |
||
39 |
# |
|
40 |
# Check target |
|
41 |
# |
|
42 |
||
43 |
check: variable_check |
|
44 |
||
45 |
# |
|
46 |
# Help target |
|
47 |
# |
|
48 |
help: intro_help target_help variable_help notes_help examples_help |
|
49 |
||
50 |
# Intro help message |
|
51 |
intro_help: |
|
52 |
@$(ECHO) "\ |
|
53 |
Makefile for the main JDK workspace. \n\ |
|
54 |
Default behavior is to use the BOOTDIR javac to bootstrap the build and \n\ |
|
55 |
import in pre-built components like the VM from the JDK_IMPORT_PATH. \n\ |
|
56 |
" |
|
57 |
||
58 |
# Target help |
|
59 |
target_help: |
|
60 |
@$(ECHO) "\ |
|
61 |
--- Common Targets --- \n\ |
|
62 |
all -- build the core JDK (default target) \n\ |
|
63 |
help -- Print out help information \n\ |
|
64 |
check -- Check make variable values for correctness \n\ |
|
65 |
sanity -- Perform detailed sanity checks on system and settings \n\ |
|
66 |
openjdk -- synonym for 'OPENJDK=true all' \n\ |
|
67 |
fastdebug -- build the core JDK in 'fastdebug' mode (-g -O) \n\ |
|
68 |
debug -- build the core JDK in 'debug' mode (-g) \n\ |
|
69 |
clean -- remove all built and imported files \n\ |
|
70 |
clobber -- same as clean \n\ |
|
71 |
docs -- run javadoc to generate the JDK documentation \n\ |
|
72 |
images -- build the jdk and jre image directories \n\ |
|
73 |
import -- copy in the pre-built components (e.g. VM) \n\ |
|
74 |
import_product -- copy in the product components \n\ |
|
75 |
import_fastdebug -- copy in the fastdebug components \n\ |
|
76 |
import_debug -- copy in the debug components \n\ |
|
77 |
create_links -- create softlinks in Solaris 32bit build to 64bit dirs \n\ |
|
78 |
" |
|
79 |
||
80 |
# Variable help (only common ones used by this workspace) |
|
81 |
variable_help: variable_help_intro variable_list variable_help_end |
|
82 |
variable_help_intro: |
|
83 |
@$(ECHO) "--- Common Variables ---" |
|
84 |
variable_help_end: |
|
85 |
@$(ECHO) " " |
|
86 |
||
87 |
# One line descriptions for the variables |
|
88 |
OUTPUTDIR.desc = Output directory |
|
89 |
PARALLEL_COMPILE_JOBS.desc = Solaris/Linux parallel compile run count |
|
90 |
SLASH_JAVA.desc = Root of all build tools, e.g. /java or J: |
|
91 |
BOOTDIR.desc = JDK used to boot the build |
|
92 |
LANGTOOLS_DIST.desc = langtools dist area used to build |
|
93 |
CORBA_DIST.desc = corba dist area |
|
94 |
JAXP_DIST.desc = jaxp dist area |
|
95 |
JAXWS_DIST.desc = jaxws dist area |
|
96 |
JDK_IMPORT_PATH.desc = JDK used to import components of the build |
|
97 |
COMPILER_PATH.desc = Compiler install directory |
|
98 |
CACERTS_FILE.desc = Location of certificates file |
|
99 |
DEVTOOLS_PATH.desc = Directory containing zip and unzip |
|
100 |
CUPS_HEADERS_PATH.desc = Include directory location for CUPS header files |
|
101 |
DXSDK_PATH.desc = Root directory of DirectX SDK |
|
102 |
||
103 |
# Make variables to print out (description and value) |
|
104 |
VARIABLE_PRINTVAL_LIST += \ |
|
105 |
OUTPUTDIR \ |
|
106 |
PARALLEL_COMPILE_JOBS \ |
|
107 |
SLASH_JAVA \ |
|
108 |
BOOTDIR \ |
|
109 |
LANGTOOLS_DIST \ |
|
110 |
JAXWS_DIST \ |
|
111 |
CORBA_DIST \ |
|
112 |
JAXP_DIST \ |
|
113 |
JDK_IMPORT_PATH \ |
|
114 |
COMPILER_PATH \ |
|
115 |
CACERTS_FILE \ |
|
116 |
DEVTOOLS_PATH |
|
117 |
||
118 |
# Make variables that should refer to directories that exist |
|
119 |
VARIABLE_CHECKDIR_LIST += \ |
|
120 |
SLASH_JAVA \ |
|
121 |
BOOTDIR \ |
|
122 |
JDK_IMPORT_PATH \ |
|
123 |
COMPILER_PATH \ |
|
124 |
DEVTOOLS_PATH |
|
125 |
||
126 |
# Make variables that should refer to files that exist |
|
127 |
VARIABLE_CHECKFIL_LIST += \ |
|
128 |
CACERTS_FILE |
|
129 |
||
130 |
# Some are windows specific |
|
131 |
ifeq ($(PLATFORM), windows) |
|
132 |
||
133 |
VARIABLE_PRINTVAL_LIST += \ |
|
8018
79ce40b4ab5e
6950375: Remove msvcrt.dll from the Windows JRE bundles
ohair
parents:
7666
diff
changeset
|
134 |
DXSDK_PATH |
2 | 135 |
|
136 |
VARIABLE_CHECKDIR_LIST += \ |
|
8018
79ce40b4ab5e
6950375: Remove msvcrt.dll from the Windows JRE bundles
ohair
parents:
7666
diff
changeset
|
137 |
DXSDK_PATH |
2 | 138 |
|
139 |
endif |
|
140 |
||
141 |
# For pattern rules below, so all are treated the same |
|
142 |
DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval) |
|
143 |
DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir) |
|
144 |
DO_CHECKFIL_LIST=$(VARIABLE_CHECKFIL_LIST:%=%.checkfil) |
|
145 |
||
146 |
# Complete variable check |
|
147 |
variable_check: $(DO_CHECKDIR_LIST) $(DO_CHECKFIL_LIST) |
|
148 |
variable_list: $(DO_PRINTVAL_LIST) variable_check |
|
149 |
||
150 |
# Pattern rule for printing out a variable |
|
151 |
%.printval: |
|
152 |
@$(ECHO) " ALT_$* - $($*.desc)" |
|
153 |
@$(ECHO) " \t $*=$($*)" |
|
154 |
||
155 |
# Pattern rule for checking to see if a variable with a directory exists |
|
156 |
%.checkdir: |
|
157 |
@if [ ! -d $($*) ] ; then \ |
|
158 |
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
159 |
fi |
|
160 |
||
161 |
# Pattern rule for checking to see if a variable with a file exists |
|
162 |
%.checkfil: |
|
163 |
@if [ ! -f $($*) ] ; then \ |
|
164 |
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
165 |
fi |
|
166 |
||
167 |
# Misc notes on help |
|
168 |
notes_help: |
|
169 |
@$(ECHO) "\ |
|
170 |
--- Notes --- \n\ |
|
171 |
- All builds use same output directory unless overridden with \n\ |
|
172 |
\t ALT_OUTPUTDIR=<dir>, changing from product to fastdebug you may want \n\ |
|
173 |
\t to use the clean target first. \n\ |
|
174 |
- LANGTOOLS_DIST must refer to a langtools dist area, used to build. \n\ |
|
175 |
- CORBA_DIST must refer to a corba dist area. \n\ |
|
176 |
- JAXP_DIST must refer to a jaxp dist area. \n\ |
|
177 |
- JAXWS_DIST must refer to a jaxws dist area. \n\ |
|
178 |
- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted \n\ |
|
179 |
\t builds or previous release JDK builds will work. \n\ |
|
180 |
- The 'debug' target and 'import_debug' only works when a debug promoted \n\ |
|
181 |
\t build is available, and they currently are not. \n\ |
|
182 |
- The fastest builds have been when the workspace and the BOOTDIR are on \n\ |
|
183 |
\t local disk. \n\ |
|
184 |
" |
|
185 |
||
186 |
examples_help: |
|
187 |
@$(ECHO) "\ |
|
188 |
--- Examples --- \n\ |
|
189 |
$(MAKE) fastdebug \n\ |
|
190 |
$(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\ |
|
191 |
$(MAKE) ALT_OUTPUTDIR=/tmp/foobar fastdebug images \n\ |
|
192 |
$(MAKE) ALT_OUTPUTDIR=/tmp/foobar all docs images \n\ |
|
193 |
$(MAKE) ALT_BOOTDIR=/opt/java/jdk1.6.0 \n\ |
|
194 |
$(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk1.7.0 \n\ |
|
195 |
" |
|
196 |
||
197 |
# |
|
198 |
# 'all' target intro |
|
199 |
# |
|
200 |
all:: |
|
201 |
@$(ECHO) $(PLATFORM) $(ARCH) $(RELEASE) build started: $(shell $(DATE) '+%y-%m-%d %H:%M') |
|
202 |
||
203 |
# Just in case anyone uses this old name, same as 'build' |
|
204 |
optimized: build |
|
205 |
||
206 |
openjdk: |
|
207 |
$(MAKE) OPENJDK=true all |
|
208 |
||
209 |
# |
|
210 |
# Special debug rules (You may also want to set ALT_OUTPUTDIR) |
|
211 |
# |
|
212 |
debug: |
|
213 |
$(MAKE) VARIANT=DBG all |
|
214 |
fastdebug: |
|
215 |
$(MAKE) VARIANT=DBG FASTDEBUG=true all |
|
216 |
||
217 |
# |
|
218 |
# Rules to re-import VM and other JDK files |
|
219 |
# |
|
220 |
import: |
|
221 |
$(CD) java/redist; $(MAKE) clean all |
|
222 |
||
223 |
import_fastdebug: |
|
224 |
$(MAKE) VARIANT=DBG FASTDEBUG=true import |
|
225 |
||
226 |
import_product: |
|
227 |
$(MAKE) VARIANT=OPT FASTDEBUG=false import |
|
228 |
||
229 |
# |
|
230 |
# Core. |
|
231 |
# |
|
232 |
||
233 |
all build:: sanity-all post-sanity-all |
|
234 |
||
4917
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4524
diff
changeset
|
235 |
SUBDIRS = tools java javax sun com |
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4524
diff
changeset
|
236 |
SUBDIRS_tools = launchers |
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4524
diff
changeset
|
237 |
SUBDIRS_misc = org sunw jpda mkdemo mksample |
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4524
diff
changeset
|
238 |
|
7174
5a56e43d896c
6792706: Add JAR file to bootclasspath when using AggressiveOpts
ohair
parents:
6681
diff
changeset
|
239 |
# Alternate classes implementation |
5a56e43d896c
6792706: Add JAR file to bootclasspath when using AggressiveOpts
ohair
parents:
6681
diff
changeset
|
240 |
ifndef OPENJDK |
5a56e43d896c
6792706: Add JAR file to bootclasspath when using AggressiveOpts
ohair
parents:
6681
diff
changeset
|
241 |
SUBDIRS_misc += altclasses |
5a56e43d896c
6792706: Add JAR file to bootclasspath when using AggressiveOpts
ohair
parents:
6681
diff
changeset
|
242 |
endif |
5a56e43d896c
6792706: Add JAR file to bootclasspath when using AggressiveOpts
ohair
parents:
6681
diff
changeset
|
243 |
|
4917
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4524
diff
changeset
|
244 |
include $(BUILDDIR)/common/Subdirs.gmk |
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4524
diff
changeset
|
245 |
|
2 | 246 |
all build:: |
247 |
$(SUBDIRS-loop) |
|
248 |
||
249 |
clean clobber:: |
|
250 |
$(RM) -r $(OUTPUTDIR) |
|
251 |
||
252 |
# |
|
253 |
# Docs |
|
254 |
# |
|
255 |
OTHERSUBDIRS = docs |
|
256 |
docs:: sanity-docs post-sanity-docs |
|
257 |
$(OTHERSUBDIRS-loop) |
|
258 |
||
259 |
# |
|
260 |
# Release engineering targets. |
|
261 |
# |
|
262 |
include $(BUILDDIR)/common/Release.gmk |
|
263 |
||
264 |
# |
|
265 |
# Cscope targets. |
|
266 |
# |
|
267 |
include $(BUILDDIR)/common/Cscope.gmk |
|
268 |
||
269 |
# |
|
270 |
# Sanity checks. |
|
271 |
# |
|
272 |
include $(BUILDDIR)/common/Sanity.gmk |
|
273 |
||
274 |
$(OUTPUTDIR) $(TEMPDIR): |
|
275 |
$(MKDIR) -p $@ |
|
276 |
||
277 |
# this should be the last rule in this file: |
|
278 |
all:: |
|
279 |
@if [ -r $(WARNING_FILE) ]; then \ |
|
280 |
$(CAT) $(WARNING_FILE) ; \ |
|
281 |
fi |
|
282 |
@$(ECHO) $(PLATFORM) $(ARCH) $(RELEASE) build finished: $(shell $(DATE) '+%y-%m-%d %H:%M') |
|
283 |
||
284 |
# |
|
285 |
# Developer rule that links 32 and 64 bit builds on Solaris by creating |
|
286 |
# softlinks in the 32bit outputdir to the 64bit outputdir. |
|
287 |
# |
|
288 |
ifeq ($(PLATFORM), solaris) |
|
289 |
ifeq ($(ARCH_FAMILY), sparc) |
|
290 |
ARCH32 = sparc |
|
291 |
ARCH64 = sparcv9 |
|
292 |
else |
|
293 |
ARCH32 = i586 |
|
294 |
ARCH64 = amd64 |
|
295 |
endif |
|
296 |
OUTPUTDIR32 = $(ABS_OUTPUTDIR)/../$(PLATFORM)-$(ARCH32) |
|
297 |
OUTPUTDIR64 = $(ABS_OUTPUTDIR)/../$(PLATFORM)-$(ARCH64) |
|
298 |
endif |
|
299 |
||
300 |
create_links: |
|
301 |
ifeq ($(PLATFORM), solaris) |
|
302 |
@if [ -d $(OUTPUTDIR32) -a -d $(OUTPUTDIR64) ] ; then \ |
|
303 |
dirlist=`($(CD) $(OUTPUTDIR64); $(FIND) . -name $(ARCH64))`; \ |
|
304 |
for sd in $$dirlist ; do \ |
|
305 |
pdir=`$(DIRNAME) $$sd`; \ |
|
306 |
if [ -d $(OUTPUTDIR32)/$$pdir ] ; then \ |
|
307 |
echo "Creating link for $$sd"; \ |
|
308 |
(cd $(OUTPUTDIR32)/$$pdir; $(RM) $(ARCH64); \ |
|
309 |
$(LN) -s $(OUTPUTDIR64)/$$sd ); \ |
|
310 |
fi; \ |
|
311 |
done; \ |
|
312 |
else \ |
|
313 |
$(ECHO) "Build both 32 and 64 bit versions first"; \ |
|
314 |
fi |
|
315 |
else |
|
316 |
$(ECHO) "Rule $@ does not apply on $(PLATFORM)-$(ARCH)" |
|
317 |
endif |
|
318 |
||
319 |
# |
|
6681
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
320 |
# Test rule |
2 | 321 |
# |
6681
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
322 |
|
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
323 |
.NOTPARALLEL: test_run |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
324 |
|
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
325 |
test: |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
326 |
$(MAKE) test_run |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
327 |
|
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
328 |
test_run: test_clean test_start test_summary |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
329 |
|
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
330 |
test_start: |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
331 |
@$(ECHO) "Tests started at `$(DATE)`" |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
332 |
|
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
333 |
test_clean: |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
334 |
$(RM) $(OUTPUTDIR)/test_failures.txt $(OUTPUTDIR)/test_log.txt |
2 | 335 |
|
6681
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
336 |
test_summary: $(OUTPUTDIR)/test_failures.txt |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
337 |
@$(ECHO) "#################################################" |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
338 |
@$(ECHO) "Tests completed at `$(DATE)`" |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
339 |
@( $(EGREP) '^TEST STATS:' $(OUTPUTDIR)/test_log.txt \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
340 |
|| $(ECHO) "No TEST STATS seen in log" ) |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
341 |
@$(ECHO) "For complete details see: $(OUTPUTDIR)/test_log.txt" |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
342 |
@$(ECHO) "#################################################" |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
343 |
@if [ -s $< ] ; then \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
344 |
$(ECHO) "ERROR: Test failure count: `$(CAT) $< | $(WC) -l`"; \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
345 |
$(CAT) $<; \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
346 |
exit 1; \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
347 |
else \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
348 |
$(ECHO) "Success! No failures detected"; \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
349 |
fi |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
350 |
|
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
351 |
# Get failure list from log |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
352 |
$(OUTPUTDIR)/test_failures.txt: $(OUTPUTDIR)/test_log.txt |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
353 |
@$(RM) $@ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
354 |
@( $(EGREP) '^FAILED:' $< || $(ECHO) "" ) | $(NAWK) 'length>0' > $@ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
355 |
|
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
356 |
# Get log file of all tests run |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
357 |
JDK_TO_TEST := $(shell \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
358 |
if [ -d "$(ABS_OUTPUTDIR)/j2sdk-image" ] ; then \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
359 |
$(ECHO) "$(ABS_OUTPUTDIR)/j2sdk-image"; \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
360 |
elif [ -d "$(ABS_OUTPUTDIR)/bin" ] ; then \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
361 |
$(ECHO) "$(ABS_OUTPUTDIR)"; \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
362 |
elif [ "$(PRODUCT_HOME)" != "" -a -d "$(PRODUCT_HOME)/bin" ] ; then \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
363 |
$(ECHO) "$(PRODUCT_HOME)"; \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
364 |
fi \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
365 |
) |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
366 |
|
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
367 |
TEST_TARGETS=jdk_all |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
368 |
$(OUTPUTDIR)/test_log.txt: |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
369 |
$(RM) $@ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
370 |
( $(CD) ../test && \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
371 |
$(MAKE) NO_STOPPING=- PRODUCT_HOME=$(JDK_TO_TEST) $(TEST_TARGETS) \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
372 |
) | tee $@ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
373 |
|
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
374 |
# |
2 | 375 |
# JPRT rules |
6681
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
376 |
# |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
377 |
|
2 | 378 |
include jprt.gmk |
379 |
||
380 |
# |
|
381 |
# Phonies to avoid accidents. |
|
382 |
# |
|
383 |
.PHONY: all build clean clobber optimized debug fastdebug create_links \ |
|
6681
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
384 |
import import_product import_fastdebug import_debug \ |
e721d11e4826
6987114: Fix top level "test" Makefile logic, add jdk/make/Makefile test target
ohair
parents:
5506
diff
changeset
|
385 |
test test_run test_start test_clean test_summary |
2 | 386 |