Makefile revision 0
1607N/A# Copyright 1995-2007 Sun Microsystems, Inc. All Rights Reserved. 1607N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 1607N/A# This code is free software; you can redistribute it and/or modify it 1607N/A# under the terms of the GNU General Public License version 2 only, as 1607N/A# published by the Free Software Foundation. Sun designates this 1607N/A# particular file as subject to the "Classpath" exception as provided 1607N/A# by Sun in the LICENSE file that accompanied this code. 1607N/A# This code is distributed in the hope that it will be useful, but WITHOUT 1607N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 1607N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 1607N/A# version 2 for more details (a copy is included in the LICENSE file that 1607N/A# You should have received a copy of the GNU General Public License version 1607N/A# 2 along with this work; if not, write to the Free Software Foundation, 1607N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 1607N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 1607N/A# Makefile for building and packaging all of the JDK and the JRE. See 3362N/A# Make sure we are clear what the default target is 1607N/AMakefile for the main JDK workspace. \n\ 1607N/ADefault behavior is to use the BOOTDIR javac to bootstrap the build and \n\ 1607N/Aimport in pre-built components like the VM from the JDK_IMPORT_PATH. \n\ 1607N/Aall -- build the core JDK (default target) \n\ 3089N/Ahelp -- Print out help information \n\ 3089N/Acheck -- Check make variable values for correctness \n\ 3089N/Asanity -- Perform detailed sanity checks on system and settings \n\ 3089N/Aopenjdk -- synonym for 'OPENJDK=true all' \n\ 3089N/Afastdebug -- build the core JDK in 'fastdebug' mode (-g -O) \n\ 3089N/Adebug -- build the core JDK in 'debug' mode (-g) \n\ 3089N/Aclean -- remove all built and imported files \n\ 3089N/Aclobber -- same as clean \n\ 3089N/Adocs -- run javadoc to generate the JDK documentation \n\ 1607N/Aimages -- build the jdk and jre image directories \n\ 1607N/Aimport -- copy in the pre-built components (e.g. VM) \n\ 1607N/Aimport_product -- copy in the product components \n\ 1607N/Aimport_fastdebug -- copy in the fastdebug components \n\ 1929N/Aimport_debug -- copy in the debug components \n\ 1607N/Asccs_get -- make sure all SCCS files are up-to-date (need SCCS) \n\ 1607N/Acreate_links -- create softlinks in Solaris 32bit build to 64bit dirs \n\ 1607N/A# Variable help (only common ones used by this workspace) 1607N/A# One line descriptions for the variables 3362N/A# 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. # cleanup everything. If the workspace is not being built by the control # workspace, and if it is a Teamware workspace, then see if there are # any files which are not under SCCS control. $(ECHO) '\nPerforming workspace scan for remnant files.\n' \
' Any files listed below are not under SCCS control in the workspace\n' \
' and you should review them and possibly remove them manually:' ; \
$(SED) 's+SCCS/[ps]\.++' |
$(SORT) |
$(UNIQ) -c |
$(NAWK) '$$1<2 {print $$2;}' ; \
$(ECHO) 'End of workspace scan.' ; \
# 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 # Get top level sccs_get rule # Phonies to avoid accidents.