Makefile revision 459
98N/A# Copyright 2005-2008 Sun Microsystems, Inc. All Rights Reserved. 287N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 98N/A# This code is free software; you can redistribute it and/or modify it 98N/A# under the terms of the GNU General Public License version 2 only, as 98N/A# published by the Free Software Foundation. Sun designates this 98N/A# particular file as subject to the "Classpath" exception as provided 98N/A# by Sun in the LICENSE file that accompanied this code. 98N/A# This code is distributed in the hope that it will be useful, but WITHOUT 98N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 98N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 98N/A# version 2 for more details (a copy is included in the LICENSE file that 98N/A# accompanied this code). 98N/A# You should have received a copy of the GNU General Public License version 98N/A# 2 along with this work; if not, write to the Free Software Foundation, 98N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 98N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 98N/A# have any questions. 98N/A# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds 354N/A# JCE builds are very different between OpenJDK and JDK. The OpenJDK JCE 354N/A# jar files do not require signing, but those for JDK do. If an unsigned 354N/A# jar file is installed into JDK, things will break when the crypto 354N/A# This Makefile does the "real" build of the JCE files. For OpenJDK, 354N/A# the jar files built here are installed directly into the OpenJDK. 354N/A# the closed workspace that are not shipped in the OpenJDK workspaces. 354N/A# We still build the JDK files here to verify the files compile, and in 98N/A# preparation for possible signing. Developers working on JCE in JDK 98N/A# must sign the JCE files before testing. The JCE signing key is kept 98N/A# separate from the JDK workspace to prevent its disclosure. 98N/A# SPECIAL NOTE TO JCE/JDK developers: The source files must eventually 98N/A# be built, signed, and then the resulting jar files MUST BE CHECKED 341N/A# INTO THE CLOSED PART OF THE WORKSPACE*. This separate step *MUST NOT 366N/A# BE FORGOTTEN*, otherwise a bug fixed in the source code will not be 354N/A# reflected in the shipped binaries. The "release" target should be 325N/A# used to generate the required files. 137N/A# If JDK, installs prebuilt 98N/A# If OpenJDK, does not sign. 179N/A# If JDK, tries to sign. 366N/A# install-jar Alias for "jar" above. 98N/A# Other targets (JDK only): 98N/A# sign Alias for sign-jar 98N/A# release Builds all targets in preparation 98N/A# for workspace integration. 98N/A# install-prebuilt Installs the pre-built jar files 98N/A# This makefile was written to support parallel target execution. 98N/A# The following is for when we need to do postprocessing 98N/A# isn't writable, the build currently crashes out. 98N/A # ===================================================== 98N/A # Where to place the output, in case we're building from a read-only 98N/A # build area. (e.g. a release engineering build.) # Java files that define native methods # We use a variety of subdirectories in the $(TEMPDIR) depending on what # part of the build we're doing. Both OPENJDK/JDK builds are initially # done in the unsigned area. When files are signed in JDK, # they will be placed in the appropriate area. # ===================================================== # The sunmscapi.jar needs to be in the extension class directory, # therefore none of its classes can appear in $(CLASSBINDIR). # Currently no one is using any of the MSCAPI internals, so these files # should not have been built. # Since the -C option to jar is used below, each directory entry must be # preceded with the appropriate directory to "cd" into. # ===================================================== # Sign the provider jar file. Not needed for OpenJDK. # We have to remove the build dependency, otherwise, we'll try to rebuild it # which we can't do on a read-only filesystem. # ===================================================== # Create the Release Engineering files. Signed builds, etc. # ===================================================== @
$(ECHO) "\n>>>Installing prebuilt SunMSCAPI provider..."# =====================================================