blob: f9162f0b6413edfb1fc1058b094121aaeb459413 [file] [log] [blame]
J. Duke686d76f2007-12-01 00:00:00 +00001#
Kelly O'Hair228c2162012-09-18 11:29:16 -07002# Copyright (c) 1995, 2012, 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'Hair228c2162012-09-18 11:29:16 -070026# If NEWBUILD is defined, use the new build-infra Makefiles and configure.
27# See NewMakefile.gmk for more information.
28
Kelly O'Hairec348ed2013-01-04 21:04:03 -080029# If not specified, select what the default build is
30ifndef NEWBUILD
31 NEWBUILD=true
32endif
33
Kelly O'Hair228c2162012-09-18 11:29:16 -070034ifeq ($(NEWBUILD),true)
35
36 # The new top level Makefile
37 include NewMakefile.gmk
38
39else # Original Makefile logic
40
Kelly O'Hair6377bd62008-03-09 15:47:58 -070041BUILD_PARENT_DIRECTORY=.
42
Kelly O'Haireebc4b12011-05-16 08:40:01 -070043# Basename of any originally supplied ALT_OUTPUTDIR directory
44ifndef ORIG_OUTPUTDIR_BASENAME
45 ifdef ALT_OUTPUTDIR
46 ORIG_OUTPUTDIR_BASENAME := $(shell basename $(ALT_OUTPUTDIR))
47 else
48 ORIG_OUTPUTDIR_BASENAME = $(PLATFORM)-$(ARCH)
49 endif
50endif
51export ORIG_OUTPUTDIR_BASENAME
52
53# The three possible directories created for output (3 build flavors)
54OUTPUTDIR_BASENAME- = $(ORIG_OUTPUTDIR_BASENAME)
55OUTPUTDIR_BASENAME-debug = $(ORIG_OUTPUTDIR_BASENAME)-debug
56OUTPUTDIR_BASENAME-fastdebug = $(ORIG_OUTPUTDIR_BASENAME)-fastdebug
57
58# Relative path to a debug output area
59REL_JDK_OUTPUTDIR = ../$(OUTPUTDIR_BASENAME-$(DEBUG_NAME))
60
61# The created jdk image directory
62JDK_IMAGE_DIRNAME = j2sdk-image
63JDK_IMAGE_DIR = $(OUTPUTDIR)/$(JDK_IMAGE_DIRNAME)
64ABS_JDK_IMAGE_DIR = $(ABS_OUTPUTDIR)/$(JDK_IMAGE_DIRNAME)
65
66# Relative path from an output directory to the image directory
67REL_JDK_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-$(DEBUG_NAME))/$(JDK_IMAGE_DIRNAME)
68REL_JDK_DEBUG_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-debug)/$(JDK_IMAGE_DIRNAME)
69REL_JDK_FASTDEBUG_IMAGE_DIR = ../$(OUTPUTDIR_BASENAME-fastdebug)/$(JDK_IMAGE_DIRNAME)
70
J. Duke686d76f2007-12-01 00:00:00 +000071ifndef TOPDIR
Kelly O'Hairfb56a9a2008-03-25 14:38:56 -070072 TOPDIR:=.
J. Duke686d76f2007-12-01 00:00:00 +000073endif
74
J. Duke686d76f2007-12-01 00:00:00 +000075ifndef JDK_TOPDIR
76 JDK_TOPDIR=$(TOPDIR)/jdk
77endif
78ifndef JDK_MAKE_SHARED_DIR
79 JDK_MAKE_SHARED_DIR=$(JDK_TOPDIR)/make/common/shared
80endif
81
Kelly O'Hairfa892cf2008-08-06 14:57:13 -070082default: all
83
J. Duke686d76f2007-12-01 00:00:00 +000084include $(JDK_MAKE_SHARED_DIR)/Defs-control.gmk
J. Duke686d76f2007-12-01 00:00:00 +000085include ./make/Defs-internal.gmk
J. Duke686d76f2007-12-01 00:00:00 +000086include ./make/sanity-rules.gmk
J. Duke686d76f2007-12-01 00:00:00 +000087include ./make/hotspot-rules.gmk
88include ./make/langtools-rules.gmk
89include ./make/corba-rules.gmk
90include ./make/jaxp-rules.gmk
91include ./make/jaxws-rules.gmk
92include ./make/jdk-rules.gmk
93include ./make/install-rules.gmk
94include ./make/sponsors-rules.gmk
95include ./make/deploy-rules.gmk
96
Kelly O'Hair88990fd2011-01-05 17:24:58 -080097all:: sanity
Kelly O'Hairfa892cf2008-08-06 14:57:13 -070098
99ifeq ($(SKIP_FASTDEBUG_BUILD), false)
100 all:: fastdebug_build
101endif
102
103ifeq ($(SKIP_DEBUG_BUILD), false)
104 all:: debug_build
105endif
106
Kelly O'Hair179908e2008-08-17 09:56:25 -0700107all:: all_product_build
108
Kelly O'Hairc64ee492011-03-09 16:26:38 -0800109all_product_build::
110
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700111# Everything for a full product build
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700112ifeq ($(SKIP_PRODUCT_BUILD), false)
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100113
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700114 all_product_build:: product_build
115
116 ifeq ($(BUILD_INSTALL), true)
117 all_product_build:: $(INSTALL)
118 clobber:: install-clobber
119 endif
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100120
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700121 ifeq ($(BUILD_SPONSORS), true)
122 all_product_build:: $(SPONSORS)
123 clobber:: sponsors-clobber
124 endif
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100125
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700126 ifneq ($(SKIP_COMPARE_IMAGES), true)
127 all_product_build:: compare-image
128 endif
129
130endif
131
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100132define StartTimer
133 $(MKDIR) -p $(BUILDTIMESDIR)
134 $(RM) $(BUILDTIMESDIR)/build_time_*
135 $(call RecordStartTime,TOTAL)
136endef
137
138define StopTimer
139 $(if $(REPORT_BUILD_TIMES),$(call RecordEndTime,TOTAL) && $(call ReportBuildTimes,$1),)
140endef
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700141
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700142# Generic build of basic repo series
Kelly O'Hair4231fbb2011-04-26 16:30:00 -0700143generic_build_repo_series:: $(SOURCE_TIPS)
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700144 $(MKDIR) -p $(JDK_IMAGE_DIR)
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100145 @$(call StartTimer)
J. Duke686d76f2007-12-01 00:00:00 +0000146
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700147ifeq ($(BUILD_LANGTOOLS), true)
148 generic_build_repo_series:: langtools
149 clobber:: langtools-clobber
150endif
151
152ifeq ($(BUILD_CORBA), true)
153 generic_build_repo_series:: corba
154 clobber:: corba-clobber
155endif
156
157ifeq ($(BUILD_JAXP), true)
158 generic_build_repo_series:: jaxp
159 clobber:: jaxp-clobber
160endif
161
162ifeq ($(BUILD_JAXWS), true)
163 generic_build_repo_series:: jaxws
164 clobber:: jaxws-clobber
165endif
166
167ifeq ($(BUILD_HOTSPOT), true)
168 generic_build_repo_series:: $(HOTSPOT)
169 clobber:: hotspot-clobber
170endif
171
172ifeq ($(BUILD_JDK), true)
173 generic_build_repo_series:: $(JDK_JAVA_EXE)
174 clobber:: jdk-clobber
175endif
176
177ifeq ($(BUILD_DEPLOY), true)
178 generic_build_repo_series:: $(DEPLOY)
179 clobber:: deploy-clobber
180endif
181
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100182generic_build_repo_series::
183 @$(call StopTimer,$(if $(DEBUG_NAME),$(DEBUG_NAME)_build,all_product_build))
184
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700185# The debug build, fastdebug or debug. Needs special handling.
186# Note that debug builds do NOT do INSTALL steps, but must be done
187# after the product build and before the INSTALL step of the product build.
188#
189# DEBUG_NAME is fastdebug or debug
190# ALT_OUTPUTDIR is changed to have -debug or -fastdebug suffix
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700191# The resulting image directory (j2sdk-image) is used by the install makefiles
192# to create a debug install bundle jdk-*-debug-** bundle (tar or zip)
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700193# which will install in the debug or fastdebug subdirectory of the
194# normal product install area.
195# The install process needs to know what the DEBUG_NAME is, so
196# look for INSTALL_DEBUG_NAME in the install rules.
197#
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700198# NOTE: On windows, do not use $(ABS_BOOTDIR_OUTPUTDIR)-$(DEBUG_NAME).
199# Due to the use of short paths in $(ABS_OUTPUTDIR), this may
200# not be the same location.
201#
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700202
203# Location of fresh bootdir output
204ABS_BOOTDIR_OUTPUTDIR=$(ABS_OUTPUTDIR)/bootjdk
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700205FRESH_BOOTDIR=$(ABS_BOOTDIR_OUTPUTDIR)/$(JDK_IMAGE_DIRNAME)
206FRESH_DEBUG_BOOTDIR=$(ABS_BOOTDIR_OUTPUTDIR)/$(REL_JDK_IMAGE_DIR)
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700207
208create_fresh_product_bootdir: FRC
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700209 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
Kelly O'Haird0c9ba32009-11-18 16:41:09 -0800210 GENERATE_DOCS=false \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700211 BOOT_CYCLE_SETTINGS= \
212 build_product_image
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700213
214create_fresh_debug_bootdir: FRC
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700215 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
Kelly O'Haird0c9ba32009-11-18 16:41:09 -0800216 GENERATE_DOCS=false \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700217 BOOT_CYCLE_DEBUG_SETTINGS= \
218 build_debug_image
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700219
220create_fresh_fastdebug_bootdir: FRC
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700221 $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) \
Kelly O'Haird0c9ba32009-11-18 16:41:09 -0800222 GENERATE_DOCS=false \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700223 BOOT_CYCLE_DEBUG_SETTINGS= \
224 build_fastdebug_image
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700225
226# Create boot image?
227ifeq ($(SKIP_BOOT_CYCLE),false)
228 ifneq ($(PLATFORM)$(ARCH_DATA_MODEL),solaris64)
229 DO_BOOT_CYCLE=true
230 endif
231endif
232
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100233
234
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700235ifeq ($(DO_BOOT_CYCLE),true)
236
237 # Create the bootdir to use in the build
238 product_build:: create_fresh_product_bootdir
239 debug_build:: create_fresh_debug_bootdir
240 fastdebug_build:: create_fresh_fastdebug_bootdir
241
242 # Define variables to be used now for the boot jdk
243 BOOT_CYCLE_SETTINGS= \
244 ALT_BOOTDIR=$(FRESH_BOOTDIR) \
245 ALT_JDK_IMPORT_PATH=$(FRESH_BOOTDIR)
246 BOOT_CYCLE_DEBUG_SETTINGS= \
247 ALT_BOOTDIR=$(FRESH_DEBUG_BOOTDIR) \
248 ALT_JDK_IMPORT_PATH=$(FRESH_DEBUG_BOOTDIR)
249
250else
251
252 # Use the supplied ALT_BOOTDIR as the boot
253 BOOT_CYCLE_SETTINGS=
254 BOOT_CYCLE_DEBUG_SETTINGS=
255
256endif
257
258build_product_image:
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700259 $(MAKE) \
260 SKIP_FASTDEBUG_BUILD=true \
261 SKIP_DEBUG_BUILD=true \
262 $(BOOT_CYCLE_SETTINGS) \
263 generic_build_repo_series
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700264
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700265# NOTE: On windows, do not use $(ABS_OUTPUTDIR)-$(DEBUG_NAME).
266# Due to the use of short paths in $(ABS_OUTPUTDIR), this may
267# not be the same location.
268
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700269generic_debug_build:
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700270 $(MAKE) \
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700271 ALT_OUTPUTDIR=$(ABS_OUTPUTDIR)/$(REL_JDK_OUTPUTDIR) \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700272 DEBUG_NAME=$(DEBUG_NAME) \
Kelly O'Haird0c9ba32009-11-18 16:41:09 -0800273 GENERATE_DOCS=false \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700274 $(BOOT_CYCLE_DEBUG_SETTINGS) \
275 generic_build_repo_series
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700276
277build_debug_image:
278 $(MAKE) DEBUG_NAME=debug generic_debug_build
279
280build_fastdebug_image:
281 $(MAKE) DEBUG_NAME=fastdebug generic_debug_build
282
283# Build final image
284product_build:: build_product_image
285debug_build:: build_debug_image
286fastdebug_build:: build_fastdebug_image
287
Kelly O'Hair4231fbb2011-04-26 16:30:00 -0700288# The source tips are stored with the relative path to the repo.
289# This file will be used when constructing the jdk image.
290source_tips: $(SOURCE_TIPS)
291 $(CAT) $<
292$(SOURCE_TIPS): FRC
293 @$(prep-target)
294 @$(call GetSourceTips)
295
Fredrik Öhrström4eb68762011-02-28 10:56:10 +0100296clobber:: REPORT_BUILD_TIMES=
297clobber::
J. Duke686d76f2007-12-01 00:00:00 +0000298 $(RM) -r $(OUTPUTDIR)/*
J. Duke686d76f2007-12-01 00:00:00 +0000299 -($(RMDIR) -p $(OUTPUTDIR) > $(DEV_NULL) 2>&1; $(TRUE))
300
301clean: clobber
302
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700303#
304# Dev builds
305#
306
307dev : dev-build
308
309dev-build:
310 $(MAKE) DEV_ONLY=true all
311dev-sanity:
312 $(MAKE) DEV_ONLY=true sanity
313dev-clobber:
314 $(MAKE) DEV_ONLY=true clobber
J. Duke686d76f2007-12-01 00:00:00 +0000315
316#
317# Quick jdk verification build
318#
319jdk_only:
320 $(MAKE) SKIP_FASTDEBUG_BUILD=true BUILD_HOTSPOT=false all
321
322
323#
324# Quick jdk verification fastdebug build
325#
326jdk_fastdebug_only:
327 $(MAKE) DEBUG_NAME=fastdebug BUILD_HOTSPOT=false BUILD_DEPLOY=false \
328 BUILD_INSTALL=false BUILD_SPONSORS=false generic_debug_build
329
330#
331# Quick deploy verification fastdebug build
332#
333deploy_fastdebug_only:
334 $(MAKE) \
335 DEBUG_NAME=fastdebug \
336 BUILD_HOTSPOT=false \
337 BUILD_JDK=false \
338 BUILD_LANGTOOLS=false \
339 BUILD_CORBA=false \
340 BUILD_JAXP=false \
341 BUILD_JAXWS=false \
342 BUILD_INSTALL=false \
343 BUILD_SPONSORS=false \
344 generic_debug_build
345
346#
347# Product build (skip debug builds)
348#
349product_only:
350 $(MAKE) SKIP_FASTDEBUG_BUILD=true all
351
352#
353# Check target
354#
355
356check: variable_check
357
358#
359# Help target
360#
361help: intro_help target_help variable_help notes_help examples_help
362
363# Intro help message
364intro_help:
365 @$(ECHO) "\
366Makefile for the JDK builds (all the JDK). \n\
367"
368
369# Target help
370target_help:
371 @$(ECHO) "\
372--- Common Targets --- \n\
373all -- build the core JDK (default target) \n\
374help -- Print out help information \n\
375check -- Check make variable values for correctness \n\
376sanity -- Perform detailed sanity checks on system and settings \n\
377fastdebug_build -- build the core JDK in 'fastdebug' mode (-g -O) \n\
378debug_build -- build the core JDK in 'debug' mode (-g) \n\
379clean -- remove all built and imported files \n\
380clobber -- same as clean \n\
381"
382
383# Variable help (only common ones used by this Makefile)
384variable_help: variable_help_intro variable_list variable_help_end
385variable_help_intro:
386 @$(ECHO) "--- Common Variables ---"
387variable_help_end:
388 @$(ECHO) " "
389
390# One line descriptions for the variables
391OUTPUTDIR.desc = Output directory
392PARALLEL_COMPILE_JOBS.desc = Solaris/Linux parallel compile run count
393SLASH_JAVA.desc = Root of all build tools, e.g. /java or J:
394BOOTDIR.desc = JDK used to boot the build
395JDK_IMPORT_PATH.desc = JDK used to import components of the build
396COMPILER_PATH.desc = Compiler install directory
397CACERTS_FILE.desc = Location of certificates file
398DEVTOOLS_PATH.desc = Directory containing zip and gnumake
399CUPS_HEADERS_PATH.desc = Include directory location for CUPS header files
400DXSDK_PATH.desc = Root directory of DirectX SDK
J. Duke686d76f2007-12-01 00:00:00 +0000401
402# Make variables to print out (description and value)
403VARIABLE_PRINTVAL_LIST += \
404 OUTPUTDIR \
405 PARALLEL_COMPILE_JOBS \
406 SLASH_JAVA \
407 BOOTDIR \
408 JDK_IMPORT_PATH \
409 COMPILER_PATH \
410 CACERTS_FILE \
411 DEVTOOLS_PATH
412
413# Make variables that should refer to directories that exist
414VARIABLE_CHECKDIR_LIST += \
415 SLASH_JAVA \
416 BOOTDIR \
417 JDK_IMPORT_PATH \
418 COMPILER_PATH \
419 DEVTOOLS_PATH
420
421# Make variables that should refer to files that exist
422VARIABLE_CHECKFIL_LIST += \
423 CACERTS_FILE
424
425# Some are windows specific
426ifeq ($(PLATFORM), windows)
427
428VARIABLE_PRINTVAL_LIST += \
Kelly O'Hair5ef33b62011-01-14 14:04:19 -0800429 DXSDK_PATH
J. Duke686d76f2007-12-01 00:00:00 +0000430
431VARIABLE_CHECKDIR_LIST += \
Kelly O'Hair5ef33b62011-01-14 14:04:19 -0800432 DXSDK_PATH
J. Duke686d76f2007-12-01 00:00:00 +0000433
434endif
435
436# For pattern rules below, so all are treated the same
437DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
438DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
439DO_CHECKFIL_LIST=$(VARIABLE_CHECKFIL_LIST:%=%.checkfil)
440
441# Complete variable check
442variable_check: $(DO_CHECKDIR_LIST) $(DO_CHECKFIL_LIST)
443variable_list: $(DO_PRINTVAL_LIST) variable_check
444
445# Pattern rule for printing out a variable
446%.printval:
447 @$(ECHO) " ALT_$* - $($*.desc)"
448 @$(ECHO) " \t $*=$($*)"
449
450# Pattern rule for checking to see if a variable with a directory exists
451%.checkdir:
452 @if [ ! -d $($*) ] ; then \
453 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
454 fi
455
456# Pattern rule for checking to see if a variable with a file exists
457%.checkfil:
458 @if [ ! -f $($*) ] ; then \
459 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
460 fi
461
462# Misc notes on help
463notes_help:
464 @$(ECHO) "\
465--- Notes --- \n\
466- All builds use same output directory unless overridden with \n\
467 \t ALT_OUTPUTDIR=<dir>, changing from product to fastdebug you may want \n\
468 \t to use the clean target first. \n\
469- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted \n\
470 \t builds or previous release JDK builds will work. \n\
471- The fastest builds have been when the sources and the BOOTDIR are on \n\
472 \t local disk. \n\
473"
474
475examples_help:
476 @$(ECHO) "\
477--- Examples --- \n\
478 $(MAKE) fastdebug_build \n\
479 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
480 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar fastdebug_build \n\
481 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
482 $(MAKE) ALT_BOOTDIR=/opt/java/jdk1.5.0 \n\
483 $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk1.6.0 \n\
484"
485
486################################################################
Kelly O'Haird77b0512010-12-23 18:41:57 -0800487# Source bundling
J. Duke686d76f2007-12-01 00:00:00 +0000488################################################################
489ifeq ($(BUNDLE_RULES_AVAILABLE), true)
490 include $(BUNDLE_RULES)
491endif
492
493################################################################
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700494# rule to test
495################################################################
496
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700497.NOTPARALLEL: test_run
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700498
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700499test:
500 $(MAKE) test_run
501
502test_run: test_clean test_start test_summary
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700503
504test_start:
505 @$(ECHO) "Tests started at `$(DATE)`"
506
507test_clean:
508 $(RM) $(OUTPUTDIR)/test_failures.txt $(OUTPUTDIR)/test_log.txt
509
510test_summary: $(OUTPUTDIR)/test_failures.txt
511 @$(ECHO) "#################################################"
512 @$(ECHO) "Tests completed at `$(DATE)`"
513 @( $(EGREP) '^TEST STATS:' $(OUTPUTDIR)/test_log.txt \
514 || $(ECHO) "No TEST STATS seen in log" )
515 @$(ECHO) "For complete details see: $(OUTPUTDIR)/test_log.txt"
516 @$(ECHO) "#################################################"
517 @if [ -s $< ] ; then \
518 $(ECHO) "ERROR: Test failure count: `$(CAT) $< | $(WC) -l`"; \
519 $(CAT) $<; \
520 exit 1; \
521 else \
522 $(ECHO) "Success! No failures detected"; \
523 fi
524
525# Get failure list from log
526$(OUTPUTDIR)/test_failures.txt: $(OUTPUTDIR)/test_log.txt
527 @$(RM) $@
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700528 @( $(EGREP) '^FAILED:' $< || $(ECHO) "" ) | $(NAWK) 'length>0' > $@
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700529
530# Get log file of all tests run
531JDK_TO_TEST := $(shell \
Kelly O'Haireebc4b12011-05-16 08:40:01 -0700532 if [ -d "$(ABS_JDK_IMAGE_DIR)" ] ; then \
533 $(ECHO) "$(ABS_JDK_IMAGE_DIR)"; \
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700534 elif [ -d "$(ABS_OUTPUTDIR)/bin" ] ; then \
535 $(ECHO) "$(ABS_OUTPUTDIR)"; \
536 elif [ "$(PRODUCT_HOME)" != "" -a -d "$(PRODUCT_HOME)/bin" ] ; then \
537 $(ECHO) "$(PRODUCT_HOME)"; \
538 fi \
539)
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700540TEST_TARGETS=all
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700541$(OUTPUTDIR)/test_log.txt:
542 $(RM) $@
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700543 ( $(CD) test && \
544 $(MAKE) NO_STOPPING=- PRODUCT_HOME=$(JDK_TO_TEST) $(TEST_TARGETS) \
Kelly O'Hair0eca63f2010-06-21 11:00:15 -0700545 ) | tee $@
546
547################################################################
J. Duke686d76f2007-12-01 00:00:00 +0000548# JPRT rule to build
549################################################################
550
551include ./make/jprt.gmk
552
553################################################################
554# PHONY
555################################################################
556
Kelly O'Haire0c099c2010-09-24 14:03:33 -0700557.PHONY: all test test_run test_start test_summary test_clean \
Kelly O'Hairfa892cf2008-08-06 14:57:13 -0700558 generic_build_repo_series \
559 what clobber insane \
560 dev dev-build dev-sanity dev-clobber \
561 product_build \
562 fastdebug_build \
563 debug_build \
564 build_product_image \
565 build_debug_image \
566 build_fastdebug_image \
567 create_fresh_product_bootdir \
568 create_fresh_debug_bootdir \
569 create_fresh_fastdebug_bootdir \
570 generic_debug_build
J. Duke686d76f2007-12-01 00:00:00 +0000571
Kelly O'Hair6377bd62008-03-09 15:47:58 -0700572# Force target
573FRC:
574
Kelly O'Hair228c2162012-09-18 11:29:16 -0700575endif # Original Makefile logic
576