Makefile revision 2812
214N/A# Copyright (c) 1995, 2007, Oracle and/or its affiliates. All rights reserved. 1610N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 214N/A# This code is free software; you can redistribute it and/or modify it 919N/A# under the terms of the GNU General Public License version 2 only, as 919N/A# published by the Free Software Foundation. Oracle designates this 919N/A# particular file as subject to the "Classpath" exception as provided 919N/A# by Oracle in the LICENSE file that accompanied this code. 919N/A# This code is distributed in the hope that it will be useful, but WITHOUT 919N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 919N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 919N/A# version 2 for more details (a copy is included in the LICENSE file that 919N/A# accompanied this code). 919N/A# You should have received a copy of the GNU General Public License version 919N/A# 2 along with this work; if not, write to the Free Software Foundation, 919N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 919N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 1003N/A# Makefile for building and packaging all of the JDK and the JRE. See 214N/A# Make sure we are clear what the default target is 493N/AMakefile for the main JDK workspace. \n\ 214N/ADefault behavior is to use the BOOTDIR javac to bootstrap the build and \n\ 214N/Aimport in pre-built components like the VM from the JDK_IMPORT_PATH. \n\ 935N/A--- Common Targets --- \n\ 935N/Aall -- build the core JDK (default target) \n\ 935N/Ahelp -- Print out help information \n\ 935N/Acheck -- Check make variable values for correctness \n\ 935N/Asanity -- Perform detailed sanity checks on system and settings \n\ 935N/Aopenjdk -- synonym for 'OPENJDK=true all' \n\ 935N/Afastdebug -- build the core JDK in 'fastdebug' mode (-g -O) \n\ 935N/Adebug -- build the core JDK in 'debug' mode (-g) \n\ 935N/Aclean -- remove all built and imported files \n\ 935N/Aclobber -- same as clean \n\ 935N/Adocs -- run javadoc to generate the JDK documentation \n\ 935N/Aimages -- build the jdk and jre image directories \n\ 935N/Aimport -- copy in the pre-built components (e.g. VM) \n\ 935N/Aimport_product -- copy in the product components \n\ 935N/Aimport_fastdebug -- copy in the fastdebug components \n\ 935N/Aimport_debug -- copy in the debug components \n\ 935N/Amodules -- build the jdk and jre module images (experimental) \n\ 935N/Acreate_links -- create softlinks in Solaris 32bit build to 64bit dirs \n\ 935N/A# Variable help (only common ones used by this workspace) 935N/A# One line descriptions for the variables # Make variables to print out (description and value) # Make variables that should refer to directories that exist # Make variables that should refer to files that exist # Some are windows specific # For pattern rules below, so all are treated the same # Complete variable check # Pattern rule for printing out a variable # Pattern rule for checking to see if a variable with a directory exists @
if [ ! -d
$($*) ] ;
then \
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
# Pattern rule for checking to see if a variable with a file exists @
if [ ! -f
$($*) ] ;
then \
$(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
- All builds use same output directory unless overridden with \n\ \t ALT_OUTPUTDIR=<dir>, changing from product to fastdebug you may want \n\ \t to use the clean target first. \n\ - LANGTOOLS_DIST must refer to a langtools dist area, used to build. \n\ - CORBA_DIST must refer to a corba dist area. \n\ - JAXP_DIST must refer to a jaxp dist area. \n\ - JAXWS_DIST must refer to a jaxws dist area. \n\ - JDK_IMPORT_PATH must refer to a compatible build, not all past promoted \n\ \t builds or previous release JDK builds will work. \n\ - The 'debug' target and 'import_debug' only works when a debug promoted \n\ \t build is available, and they currently are not. \n\ - The fastest builds have been when the workspace and the BOOTDIR are on \n\ # Just in case anyone uses this old name, same as 'build' # Special debug rules (You may also want to set ALT_OUTPUTDIR) # Rules to re-import VM and other JDK files # Release engineering targets. # this should be the last rule in this file: # Developer rule that links 32 and 64 bit builds on Solaris by creating # softlinks in the 32bit outputdir to the 64bit outputdir. echo "Creating link for $$sd"; \
$(ECHO) "Build both 32 and 64 bit versions first"; \
# Binary Plug rules and macros @
$(ECHO) "#################################################" || $(ECHO) "No TEST STATS seen in log" ) @
$(ECHO) "#################################################" $(ECHO) "ERROR: Test failure count: `$(CAT) $< | $(WC) -l`"; \
$(ECHO) "Success! No failures detected"; \
# Get failure list from log @
( $(EGREP) '^FAILED:' $< || $(ECHO) "" ) |
$(NAWK) 'length>0' > $@
# Get log file of all tests run # Phonies to avoid accidents.