Makefile revision 459
5853N/A# Copyright 2007-2008 Sun Microsystems, Inc. All Rights Reserved. 5853N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5853N/A# This code is free software; you can redistribute it and/or modify it 5853N/A# under the terms of the GNU General Public License version 2 only, as 5853N/A# published by the Free Software Foundation. Sun designates this 5853N/A# particular file as subject to the "Classpath" exception as provided 5853N/A# by Sun in the LICENSE file that accompanied this code. 5853N/A# This code is distributed in the hope that it will be useful, but WITHOUT 5853N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 5853N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 5853N/A# version 2 for more details (a copy is included in the LICENSE file that 5853N/A# You should have received a copy of the GNU General Public License version 5853N/A# 2 along with this work; if not, write to the Free Software Foundation, 5853N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 5853N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 5853N/A# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds 5853N/A# JCE builds are very different between OpenJDK and JDK. The OpenJDK JCE 5853N/A# jar files do not require signing, but those for JDK do. If an unsigned 5853N/A# jar file is installed into JDK, things will break when the crypto 5853N/A# This Makefile does the "real" build of the JCE files. There are some 5853N/A# javac options currently specific to JCE, so we recompile now to make 5853N/A# sure any implicit compilations didn't use any incorrect flags. 5853N/A# For OpenJDK, the jar files built here are installed directly into the 5853N/A# files stored in the closed workspace that are not shipped in the 5853N/A# OpenJDK workspaces. We still build the JDK files here to verify the 5853N/A# files compile, and in preparation for possible signing and 5853N/A# obfuscation. Developers working on JCE in JDK must sign the JCE files # before testing: obfuscation is optional during development. The JCE # signing key is kept separate from the JDK workspace to prevent its # disclosure. The obfuscation tool has not been licensed for general # SPECIAL NOTE TO JCE/JDK developers: The source files must eventually # be built, obfuscated, 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.) # Location for the newly built classfiles. # Subdirectories of these are automatically included. # Some licensees do not get the security sources, but we still need to # be able to build "all" for them. Check here to see if the sources were # available. If not, then we don't need to continue this rule. else # FILES_java available endif # $(FILES_java) available # 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 or obfuscated in JDK, # they will be placed in the appropriate areas. # ===================================================== # therefore none of its classes should appear in $(CLASSBINDIR). # Currently no one is using any of the SunJCE 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. # ===================================================== @
$(ECHO) ">>>Obfuscating SunJCE Provider..."# The current obfuscator has a limitation in that it currently only # supports up to v49 class file format. Force v49 classfiles in our # ===================================================== # Create the Release Engineering files. Obfuscated builds, etc. # ===================================================== @
$(ECHO) "\n>>>Installing prebuilt SunJCE provider..."# =====================================================