blob: 5d0e08d6d157a85c9893a0d8a46f348f65680273 [file] [log] [blame]
J. Duke686d76f2007-12-01 00:00:00 +00001#
Kelly O'Hair76cc3912011-04-06 22:14:00 -07002# Copyright (c) 1995, 2011, Oracle and/or its affiliates. All rights reserved.
J. Duke686d76f2007-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'Hair136614e2010-05-25 15:51:26 -07007# published by the Free Software Foundation. Oracle designates this
J. Duke686d76f2007-12-01 00:00:00 +00008# particular file as subject to the "Classpath" exception as provided
Kelly O'Hair136614e2010-05-25 15:51:26 -07009# by Oracle in the LICENSE file that accompanied this code.
J. Duke686d76f2007-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'Hair136614e2010-05-25 15:51:26 -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. Duke686d76f2007-12-01 00:00:00 +000024#
25
Kelly O'Hair6377bd62008-03-09 15:47:58 -070026BUILD_PARENT_DIRECTORY=.
27
Kelly O'Haireebc4b12011-05-16 08:40:01 -070028# Basename of any originally supplied ALT_OUTPUTDIR directory
29ifndef ORIG_OUTPUTDIR_BASENAME
30 ifdef ALT_OUTPUTDIR
31 ORIG_OUTPUTDIR_BASENAME := $(shell basename $(ALT_OUTPUTDIR))
32 else
33 ORIG_OUTPUTDIR_BASENAME = $(PLATFORM)-$(ARCH)
34 endif
35endif
36export ORIG_OUTPUTDIR_BASENAME
37
38# The three possible directories created for output (3 build flavors)
39OUTPUTDIR_BASENAME- = $(ORIG_OUTPUTDIR_BASENAME)
40OUTPUTDIR_BASENAME-debug = $(ORIG_OUTPUTDIR_BASENAME)-debug
41OUTPUTDIR_BASENAME-fastdebug = $(ORIG_OUTPUTDIR_BASENAME)-fastdebug
42
43# Relative path to a debug output area
44REL_JDK_OUTPUTDIR = ../$(OUTPUTDIR_BASENAME-$(DEBUG_NAME))
45
46# The created jdk image directory
47JDK_IMAGE_DIRNAME = j2sdk-image
48JDK_IMAGE_DIR = $(OUTPUTDIR)/$(JDK_IMAGE_DIRNAME)
49ABS_JDK_IMAGE_DIR = $(ABS_OUTPUTDIR)/$(JDK_IMAGE_DIRNAME)
50
51# Relative path from an output directory to the image directory
52REL_JDK_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-$(DEBUG_NAME))/$(JDK_IMAGE_DIRNAME)
53REL_JDK_DEBUG_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-debug)/$(JDK_IMAGE_DIRNAME)
54REL_JDK_FASTDEBUG_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-fastdebug)/$(JDK_IMAGE_DIRNAME)
55
J. Duke686d76f2007-12-01 00:00:00 +000056ifndef TOPDIR
Kelly O'Hairfb56a9a2008-03-25 14:38:56 -070057 TOPDIR:=.
J. Duke686d76f2007-12-01 00:00:00 +000058endif
59
J. Duke686d76f2007-12-01 00:00:00 +000060ifndef JDK_TOPDIR
61 JDK_TOPDIR=$(TOPDIR)/jdk
62endif
63ifndef JDK_MAKE_SHARED_DIR
64 JDK_MAKE_SHARED_DIR=$(JDK_TOPDIR)/make/common/shared
65endif
66
Kelly O'Hairfa892cf2008-08-06 14:57:13 -070067default: all
68
J. Duke686d76f2007-12-01 00:00:00 +000069include $(JDK_MAKE_SHARED_DIR)/Defs-control.gmk
J. Duke686d76f2007-12-01 00:00:00 +000070include ./make/Defs-internal.gmk
J. Duke686d76f2007-12-01 00:00:00 +000071include ./make/sanity-rules.gmk
J. Duke686d76f2007-12-01 00:00:00 +000072include ./make/hotspot-rules.gmk
73include ./make/langtools-rules.gmk
74include ./make/corba-rules.gmk
75include ./make/jaxp-rules.gmk
76include ./make/jaxws-rules.gmk
77include ./make/jdk-rules.gmk
78include ./make/install-rules.gmk
79include ./make/sponsors-rules.gmk
80include ./make/deploy-rules.gmk
81
Kelly O'Hair88990fd2011-01-05 17:24:58 -080082all:: sanity
Kelly O'Hairfa892cf2008-08-06 14:57:13 -070083
84ifeq ($(SKIP_FASTDEBUG_BUILD), false)
85 all:: fastdebug_build
86endif
87
88ifeq ($(SKIP_DEBUG_BUILD), false)
89 all:: debug_build
90endif
91
Kelly O'Hair179908e2008-08-17 09:56:25 -070092all:: all_product_build
93
Kelly O'Hairc64ee492011-03-09 16:26:38 -080094all_product_build::
95
Kelly O'Hairfa892cf2008-08-06 14:57:13 -070096# Everything for a full product build
Kelly O'Hairfa892cf2008-08-06 14:57:13 -070097ifeq ($(SKIP_PRODUCT_BUILD), false)
Fredrik Öhrström4eb68762011-02-28 10:56:10 +010098
Kelly O'Hairfa892cf2008-08-06 14:57:13 -070099 all_product_build:: product_build
100
101 ifeq ($(BUILD_INSTALL), true)
102 all_product_build:: $(INSTALL)
103 clobber:: install-clobber
104 endif
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100105
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700106 ifeq ($(BUILD_SPONSORS), true)
107 all_product_build:: $(SPONSORS)
108 clobber:: sponsors-clobber
109 endif
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100110
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700111 ifneq ($(SKIP_COMPARE_IMAGES), true)
112 all_product_build:: compare-image
113 endif
114
115endif
116
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100117define StartTimer
118 $(MKDIR) -p $(BUILDTIMESDIR)
119 $(RM) $(BUILDTIMESDIR)/build_time_*
120 $(call RecordStartTime,TOTAL)
121endef
122
123define StopTimer
124 $(if $(REPORT_BUILD_TIMES),$(call RecordEndTime,TOTAL) && $(call ReportBuildTimes,$1),)
125endef
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700126
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700127# Generic build of basic repo series
Kelly O'Hair4231fbb2011-04-26 16:30:00 -0700128generic_build_repo_series:: $(SOURCE_TIPS)
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700129 $(MKDIR) -p $(JDK_IMAGE_DIR)
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100130 @$(call StartTimer)
J. Duke686d76f2007-12-01 00:00:00 +0000131
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700132ifeq ($(BUILD_LANGTOOLS), true)
133 generic_build_repo_series:: langtools
134 clobber:: langtools-clobber
135endif
136
137ifeq ($(BUILD_CORBA), true)
138 generic_build_repo_series:: corba
139 clobber:: corba-clobber
140endif
141
142ifeq ($(BUILD_JAXP), true)
143 generic_build_repo_series:: jaxp
144 clobber:: jaxp-clobber
145endif
146
147ifeq ($(BUILD_JAXWS), true)
148 generic_build_repo_series:: jaxws
149 clobber:: jaxws-clobber
150endif
151
152ifeq ($(BUILD_HOTSPOT), true)
153 generic_build_repo_series:: $(HOTSPOT)
154 clobber:: hotspot-clobber
155endif
156
157ifeq ($(BUILD_JDK), true)
158 generic_build_repo_series:: $(JDK_JAVA_EXE)
159 clobber:: jdk-clobber
160endif
161
162ifeq ($(BUILD_DEPLOY), true)
163 generic_build_repo_series:: $(DEPLOY)
164 clobber:: deploy-clobber
165endif
166
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100167generic_build_repo_series::
168 @$(call StopTimer,$(if $(DEBUG_NAME),$(DEBUG_NAME)_build,all_product_build))
169
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700170# The debug build, fastdebug or debug. Needs special handling.
171# Note that debug builds do NOT do INSTALL steps, but must be done
172# after the product build and before the INSTALL step of the product build.
173#
174# DEBUG_NAME is fastdebug or debug
175# ALT_OUTPUTDIR is changed to have -debug or -fastdebug suffix
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700176# The resulting image directory (j2sdk-image) is used by the install makefiles
177# to create a debug install bundle jdk-*-debug-** bundle (tar or zip)
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700178# which will install in the debug or fastdebug subdirectory of the
179# normal product install area.
180# The install process needs to know what the DEBUG_NAME is, so
181# look for INSTALL_DEBUG_NAME in the install rules.
182#
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700183# NOTE: On windows, do not use $(ABS_BOOTDIR_OUTPUTDIR)-$(DEBUG_NAME).
184# Due to the use of short paths in $(ABS_OUTPUTDIR), this may
185# not be the same location.
186#
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700187
188# Location of fresh bootdir output
189ABS_BOOTDIR_OUTPUTDIR=$(ABS_OUTPUTDIR)/bootjdk
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700190FRESH_BOOTDIR=$(ABS_BOOTDIR_OUTPUTDIR)/$(JDK_IMAGE_DIRNAME)
191FRESH_DEBUG_BOOTDIR=$(ABS_BOOTDIR_OUTPUTDIR)/$(REL_JDK_IMAGE_DIR)
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700192
193create_fresh_product_bootdir: FRC
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700194 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
Kelly O'Haird0c9ba32009-11-18 16:41:09 -0800195 GENERATE_DOCS=false \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700196 BOOT_CYCLE_SETTINGS= \
197 build_product_image
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700198
199create_fresh_debug_bootdir: FRC
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700200 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
Kelly O'Haird0c9ba32009-11-18 16:41:09 -0800201 GENERATE_DOCS=false \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700202 BOOT_CYCLE_DEBUG_SETTINGS= \
203 build_debug_image
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700204
205create_fresh_fastdebug_bootdir: FRC
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700206 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
Kelly O'Haird0c9ba32009-11-18 16:41:09 -0800207 GENERATE_DOCS=false \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700208 BOOT_CYCLE_DEBUG_SETTINGS= \
209 build_fastdebug_image
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700210
211# Create boot image?
212ifeq ($(SKIP_BOOT_CYCLE),false)
213 ifneq ($(PLATFORM)$(ARCH_DATA_MODEL),solaris64)
214 DO_BOOT_CYCLE=true
215 endif
216endif
217
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100218
219
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700220ifeq ($(DO_BOOT_CYCLE),true)
221
222 # Create the bootdir to use in the build
223 product_build:: create_fresh_product_bootdir
224 debug_build:: create_fresh_debug_bootdir
225 fastdebug_build:: create_fresh_fastdebug_bootdir
226
227 # Define variables to be used now for the boot jdk
228 BOOT_CYCLE_SETTINGS= \
229 ALT_BOOTDIR=$(FRESH_BOOTDIR) \
230 ALT_JDK_IMPORT_PATH=$(FRESH_BOOTDIR)
231 BOOT_CYCLE_DEBUG_SETTINGS= \
232 ALT_BOOTDIR=$(FRESH_DEBUG_BOOTDIR) \
233 ALT_JDK_IMPORT_PATH=$(FRESH_DEBUG_BOOTDIR)
234
235else
236
237 # Use the supplied ALT_BOOTDIR as the boot
238 BOOT_CYCLE_SETTINGS=
239 BOOT_CYCLE_DEBUG_SETTINGS=
240
241endif
242
243build_product_image:
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700244 $(MAKE) \
245 SKIP_FASTDEBUG_BUILD=true \
246 SKIP_DEBUG_BUILD=true \
247 $(BOOT_CYCLE_SETTINGS) \
248 generic_build_repo_series
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700249
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700250# NOTE: On windows, do not use $(ABS_OUTPUTDIR)-$(DEBUG_NAME).
251# Due to the use of short paths in $(ABS_OUTPUTDIR), this may
252# not be the same location.
253
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700254generic_debug_build:
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700255 $(MAKE) \
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700256 ALT_OUTPUTDIR=$(ABS_OUTPUTDIR)/$(REL_JDK_OUTPUTDIR) \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700257 DEBUG_NAME=$(DEBUG_NAME) \
Kelly O'Haird0c9ba32009-11-18 16:41:09 -0800258 GENERATE_DOCS=false \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700259 $(BOOT_CYCLE_DEBUG_SETTINGS) \
260 generic_build_repo_series
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700261
262build_debug_image:
263 $(MAKE) DEBUG_NAME=debug generic_debug_build
264
265build_fastdebug_image:
266 $(MAKE) DEBUG_NAME=fastdebug generic_debug_build
267
268# Build final image
269product_build:: build_product_image
270debug_build:: build_debug_image
271fastdebug_build:: build_fastdebug_image
272
Kelly O'Hair4231fbb2011-04-26 16:30:00 -0700273# The source tips are stored with the relative path to the repo.
274# This file will be used when constructing the jdk image.
275source_tips: $(SOURCE_TIPS)
276 $(CAT) $<
277$(SOURCE_TIPS): FRC
278 @$(prep-target)
279 @$(call GetSourceTips)
280
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100281clobber:: REPORT_BUILD_TIMES=
282clobber::
J. Duke686d76f2007-12-01 00:00:00 +0000283 $(RM) -r $(OUTPUTDIR)/*
J. Duke686d76f2007-12-01 00:00:00 +0000284 -($(RMDIR) -p $(OUTPUTDIR) > $(DEV_NULL) 2>&1; $(TRUE))
285
286clean: clobber
287
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700288#
289# Dev builds
290#
291
292dev : dev-build
293
294dev-build:
295 $(MAKE) DEV_ONLY=true all
296dev-sanity:
297 $(MAKE) DEV_ONLY=true sanity
298dev-clobber:
299 $(MAKE) DEV_ONLY=true clobber
J. Duke686d76f2007-12-01 00:00:00 +0000300
301#
302# Quick jdk verification build
303#
304jdk_only:
305 $(MAKE) SKIP_FASTDEBUG_BUILD=true BUILD_HOTSPOT=false all
306
307
308#
309# Quick jdk verification fastdebug build
310#
311jdk_fastdebug_only:
312 $(MAKE) DEBUG_NAME=fastdebug BUILD_HOTSPOT=false BUILD_DEPLOY=false \
313 BUILD_INSTALL=false BUILD_SPONSORS=false generic_debug_build
314
315#
316# Quick deploy verification fastdebug build
317#
318deploy_fastdebug_only:
319 $(MAKE) \
320 DEBUG_NAME=fastdebug \
321 BUILD_HOTSPOT=false \
322 BUILD_JDK=false \
323 BUILD_LANGTOOLS=false \
324 BUILD_CORBA=false \
325 BUILD_JAXP=false \
326 BUILD_JAXWS=false \
327 BUILD_INSTALL=false \
328 BUILD_SPONSORS=false \
329 generic_debug_build
330
331#
332# Product build (skip debug builds)
333#
334product_only:
335 $(MAKE) SKIP_FASTDEBUG_BUILD=true all
336
337#
338# Check target
339#
340
341check: variable_check
342
343#
344# Help target
345#
346help: intro_help target_help variable_help notes_help examples_help
347
348# Intro help message
349intro_help:
350 @$(ECHO) "\
351Makefile for the JDK builds (all the JDK). \n\
352"
353
354# Target help
355target_help:
356 @$(ECHO) "\
357--- Common Targets --- \n\
358all -- build the core JDK (default target) \n\
359help -- Print out help information \n\
360check -- Check make variable values for correctness \n\
361sanity -- Perform detailed sanity checks on system and settings \n\
362fastdebug_build -- build the core JDK in 'fastdebug' mode (-g -O) \n\
363debug_build -- build the core JDK in 'debug' mode (-g) \n\
364clean -- remove all built and imported files \n\
365clobber -- same as clean \n\
366"
367
368# Variable help (only common ones used by this Makefile)
369variable_help: variable_help_intro variable_list variable_help_end
370variable_help_intro:
371 @$(ECHO) "--- Common Variables ---"
372variable_help_end:
373 @$(ECHO) " "
374
375# One line descriptions for the variables
376OUTPUTDIR.desc = Output directory
377PARALLEL_COMPILE_JOBS.desc = Solaris/Linux parallel compile run count
378SLASH_JAVA.desc = Root of all build tools, e.g. /java or J:
379BOOTDIR.desc = JDK used to boot the build
380JDK_IMPORT_PATH.desc = JDK used to import components of the build
381COMPILER_PATH.desc = Compiler install directory
382CACERTS_FILE.desc = Location of certificates file
383DEVTOOLS_PATH.desc = Directory containing zip and gnumake
384CUPS_HEADERS_PATH.desc = Include directory location for CUPS header files
385DXSDK_PATH.desc = Root directory of DirectX SDK
J. Duke686d76f2007-12-01 00:00:00 +0000386
387# Make variables to print out (description and value)
388VARIABLE_PRINTVAL_LIST += \
389 OUTPUTDIR \
390 PARALLEL_COMPILE_JOBS \
391 SLASH_JAVA \
392 BOOTDIR \
393 JDK_IMPORT_PATH \
394 COMPILER_PATH \
395 CACERTS_FILE \
396 DEVTOOLS_PATH
397
398# Make variables that should refer to directories that exist
399VARIABLE_CHECKDIR_LIST += \
400 SLASH_JAVA \
401 BOOTDIR \
402 JDK_IMPORT_PATH \
403 COMPILER_PATH \
404 DEVTOOLS_PATH
405
406# Make variables that should refer to files that exist
407VARIABLE_CHECKFIL_LIST += \
408 CACERTS_FILE
409
410# Some are windows specific
411ifeq ($(PLATFORM), windows)
412
413VARIABLE_PRINTVAL_LIST += \
Kelly O'Hair5ef33b62011-01-14 14:04:19 -0800414 DXSDK_PATH
J. Duke686d76f2007-12-01 00:00:00 +0000415
416VARIABLE_CHECKDIR_LIST += \
Kelly O'Hair5ef33b62011-01-14 14:04:19 -0800417 DXSDK_PATH
J. Duke686d76f2007-12-01 00:00:00 +0000418
419endif
420
421# For pattern rules below, so all are treated the same
422DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
423DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
424DO_CHECKFIL_LIST=$(VARIABLE_CHECKFIL_LIST:%=%.checkfil)
425
426# Complete variable check
427variable_check: $(DO_CHECKDIR_LIST) $(DO_CHECKFIL_LIST)
428variable_list: $(DO_PRINTVAL_LIST) variable_check
429
430# Pattern rule for printing out a variable
431%.printval:
432 @$(ECHO) " ALT_$* - $($*.desc)"
433 @$(ECHO) " \t $*=$($*)"
434
435# Pattern rule for checking to see if a variable with a directory exists
436%.checkdir:
437 @if [ ! -d $($*) ] ; then \
438 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
439 fi
440
441# Pattern rule for checking to see if a variable with a file exists
442%.checkfil:
443 @if [ ! -f $($*) ] ; then \
444 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
445 fi
446
447# Misc notes on help
448notes_help:
449 @$(ECHO) "\
450--- Notes --- \n\
451- All builds use same output directory unless overridden with \n\
452 \t ALT_OUTPUTDIR=<dir>, changing from product to fastdebug you may want \n\
453 \t to use the clean target first. \n\
454- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted \n\
455 \t builds or previous release JDK builds will work. \n\
456- The fastest builds have been when the sources and the BOOTDIR are on \n\
457 \t local disk. \n\
458"
459
460examples_help:
461 @$(ECHO) "\
462--- Examples --- \n\
463 $(MAKE) fastdebug_build \n\
464 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
465 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar fastdebug_build \n\
466 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
467 $(MAKE) ALT_BOOTDIR=/opt/java/jdk1.5.0 \n\
468 $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk1.6.0 \n\
469"
470
471################################################################
Kelly O'Haird77b0512010-12-23 18:41:57 -0800472# Source bundling
J. Duke686d76f2007-12-01 00:00:00 +0000473################################################################
474ifeq ($(BUNDLE_RULES_AVAILABLE), true)
475 include $(BUNDLE_RULES)
476endif
477
478################################################################
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700479# rule to test
480################################################################
481
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700482.NOTPARALLEL: test_run
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700483
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700484test:
485 $(MAKE) test_run
486
487test_run: test_clean test_start test_summary
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700488
489test_start:
490 @$(ECHO) "Tests started at `$(DATE)`"
491
492test_clean:
493 $(RM) $(OUTPUTDIR)/test_failures.txt $(OUTPUTDIR)/test_log.txt
494
495test_summary: $(OUTPUTDIR)/test_failures.txt
496 @$(ECHO) "#################################################"
497 @$(ECHO) "Tests completed at `$(DATE)`"
498 @( $(EGREP) '^TEST STATS:' $(OUTPUTDIR)/test_log.txt \
499 || $(ECHO) "No TEST STATS seen in log" )
500 @$(ECHO) "For complete details see: $(OUTPUTDIR)/test_log.txt"
501 @$(ECHO) "#################################################"
502 @if [ -s $< ] ; then \
503 $(ECHO) "ERROR: Test failure count: `$(CAT) $< | $(WC) -l`"; \
504 $(CAT) $<; \
505 exit 1; \
506 else \
507 $(ECHO) "Success! No failures detected"; \
508 fi
509
510# Get failure list from log
511$(OUTPUTDIR)/test_failures.txt: $(OUTPUTDIR)/test_log.txt
512 @$(RM) $@
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700513 @( $(EGREP) '^FAILED:' $< || $(ECHO) "" ) | $(NAWK) 'length>0' > $@
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700514
515# Get log file of all tests run
516JDK_TO_TEST := $(shell \
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700517 if [ -d "$(ABS_JDK_IMAGE_DIR)" ] ; then \
518 $(ECHO) "$(ABS_JDK_IMAGE_DIR)"; \
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700519 elif [ -d "$(ABS_OUTPUTDIR)/bin" ] ; then \
520 $(ECHO) "$(ABS_OUTPUTDIR)"; \
521 elif [ "$(PRODUCT_HOME)" != "" -a -d "$(PRODUCT_HOME)/bin" ] ; then \
522 $(ECHO) "$(PRODUCT_HOME)"; \
523 fi \
524)
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700525TEST_TARGETS=all
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700526$(OUTPUTDIR)/test_log.txt:
527 $(RM) $@
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700528 ( $(CD) test && \
529 $(MAKE) NO_STOPPING=- PRODUCT_HOME=$(JDK_TO_TEST) $(TEST_TARGETS) \
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700530 ) | tee $@
531
532################################################################
J. Duke686d76f2007-12-01 00:00:00 +0000533# JPRT rule to build
534################################################################
535
536include ./make/jprt.gmk
537
538################################################################
539# PHONY
540################################################################
541
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700542.PHONY: all test test_run test_start test_summary test_clean \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700543 generic_build_repo_series \
544 what clobber insane \
545 dev dev-build dev-sanity dev-clobber \
546 product_build \
547 fastdebug_build \
548 debug_build \
549 build_product_image \
550 build_debug_image \
551 build_fastdebug_image \
552 create_fresh_product_bootdir \
553 create_fresh_debug_bootdir \
554 create_fresh_fastdebug_bootdir \
555 generic_debug_build
J. Duke686d76f2007-12-01 00:00:00 +0000556
Kelly O'Hair6377bd62008-03-09 15:47:58 -0700557# Force target
558FRC:
559