Makefile revision 160
2N/A# Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved. 2N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 2N/A# This code is free software; you can redistribute it and/or modify it 2N/A# under the terms of the GNU General Public License version 2 only, as 2N/A# published by the Free Software Foundation. Sun designates this 2N/A# particular file as subject to the "Classpath" exception as provided 2N/A# by Sun in the LICENSE file that accompanied this code. 2N/A# This code is distributed in the hope that it will be useful, but WITHOUT 2N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 2N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 2N/A# version 2 for more details (a copy is included in the LICENSE file that 2N/A# accompanied this code). 2N/A# You should have received a copy of the GNU General Public License version 2N/A# 2 along with this work; if not, write to the Free Software Foundation, 2N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 2N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 2N/A# CA 95054 USA or visit www.sun.com if you need additional information or 2N/A# have any questions. 2N/A# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds # JCE builds are very different between OpenJDK and JDK. The OpenJDK JCE # jar files do not require signing, but those for JDK do. If an unsigned # jar file is installed into JDK, things will break when the crypto # This Makefile does the "real" build of the JCE files. For OpenJDK, # the jar files built here are installed directly into the OpenJDK. # the closed workspace that are not shipped in the OpenJDK workspaces. # We still build the JDK files here to verify the files compile, and in # preparation for possible signing. Developers working on JCE in JDK # must sign the JCE files before testing. The JCE signing key is kept # separate from the JDK workspace to prevent its disclosure. # SPECIAL NOTE TO JCE/JDK developers: The source files must eventually # be built, signed, and then the resulting jar files MUST BE CHECKED # INTO THE CLOSED PART OF THE WORKSPACE*. This separate step *MUST NOT # BE FORGOTTEN*, otherwise a bug fixed in the source code will not be # reflected in the shipped binaries. The "release" target should be # used to generate the required files. # There are a number of targets to help both JDK/OpenJDK developers. # If JDK, installs prebuilt # If OpenJDK, does not sign. # install-jar Alias for "jar" above. # Other targets (JDK only): # sign Alias for sign-jar # release Builds all targets in preparation # for workspace integration. # install-prebuilt Installs the pre-built jar files # This makefile was written to support parallel target execution. # The following is for when we need to do postprocessing # isn't writable, the build currently crashes out. # ===================================================== # Where to place the output, in case we're building from a read-only # build area. (e.g. a release engineering build.) # Subdirectories of these are automatically included. # 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 sunpkcs11.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 PKCS11 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 SunPKCS11 provider..."# =====================================================