Makefile revision 3686
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# This code is free software; you can redistribute it and/or modify it
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# under the terms of the GNU General Public License version 2 only, as
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# published by the Free Software Foundation. Oracle designates this
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# particular file as subject to the "Classpath" exception as provided
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# by Oracle in the LICENSE file that accompanied this code.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# This code is distributed in the hope that it will be useful, but WITHOUT
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# version 2 for more details (a copy is included in the LICENSE file that
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# accompanied this code).
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# You should have received a copy of the GNU General Public License version
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# 2 along with this work; if not, write to the Free Software Foundation,
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# or visit www.oracle.com if you need additional information or have any
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# questions.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# Makefile for building sunjce_provider.jar.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# This file was derived from make/javax/crypto/Makefile.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds
d472214b8342a0b705ed40e358cf9caff427042aDaniel Lezcano# respectively.)
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# JCE builds are very different between OpenJDK and JDK. The OpenJDK JCE
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# jar files do not require signing, but those for JDK do. If an unsigned
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# jar file is installed into JDK, things will break when the crypto
b84f58b9fb720fa951031e2311cdf8fef8a46a28Daniel Lezcano# routines are called.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# This Makefile does the "real" build of the JCE files. There are some
b9a5bb586c0abbdb315573b201703c1f0bcfe25cDaniel Lezcano# javac options currently specific to JCE, so we recompile now to make
b84f58b9fb720fa951031e2311cdf8fef8a46a28Daniel Lezcano# sure any implicit compilations didn't use any incorrect flags.
b84f58b9fb720fa951031e2311cdf8fef8a46a28Daniel Lezcano# For OpenJDK, the jar files built here are installed directly into the
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# For JDK, the binaries use pre-built/pre-signed binary files stored in
d472214b8342a0b705ed40e358cf9caff427042aDaniel Lezcano# the closed workspace that are not shipped in the OpenJDK workspaces.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# We still build the JDK files here to verify the files compile, and in
d472214b8342a0b705ed40e358cf9caff427042aDaniel Lezcano# preparation for possible signing. Developers working on JCE in JDK
d472214b8342a0b705ed40e358cf9caff427042aDaniel Lezcano# must sign the JCE files before testing. The JCE signing key is kept
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# separate from the JDK workspace to prevent its disclosure.
75d09f83b82f35a610f4922e06ad897692062fabDaniel Lezcano# SPECIAL NOTE TO JCE/JDK developers: The source files must eventually
75d09f83b82f35a610f4922e06ad897692062fabDaniel Lezcano# be built and signed, and the resulting jar files MUST BE CHECKED INTO
d472214b8342a0b705ed40e358cf9caff427042aDaniel Lezcano# THE CLOSED PART OF THE WORKSPACE*. This separate step *MUST NOT BE
75d09f83b82f35a610f4922e06ad897692062fabDaniel Lezcano# FORGOTTEN*, otherwise a bug fixed in the source code will not be
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# reflected in the shipped binaries. The "release" target should be
d472214b8342a0b705ed40e358cf9caff427042aDaniel Lezcano# used to generate the required files.
497353b66b504f12cf8b6e166bba7cb309486dc3Daniel Lezcano# There are a number of targets to help both JDK/OpenJDK developers.
26c390288bbe04bbaba26f4ec1bbe68cb9d2b602Jamal Hadi Salim# Main Targets (JDK/OPENJDK):
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# If OpenJDK, installs sunjce_provider.jar.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# If JDK, installs prebuilt
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# If OpenJDK, does not sign.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# If JDK, tries to sign.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# Other lesser-used Targets (JDK/OPENJDK):
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# build-jar Builds sunjce_provider.jar
1f1b18e754e4c1157ffaadeb3d0ae05e5c83cb5aDaniel Lezcano# install-jar Alias for "jar" above.
1f1b18e754e4c1157ffaadeb3d0ae05e5c83cb5aDaniel Lezcano# Other targets (JDK only):
1f1b18e754e4c1157ffaadeb3d0ae05e5c83cb5aDaniel Lezcano# sign Alias for sign-jar
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# sign-jar Builds/signs sunjce_provider.jar (no install)
19a26f82145042062cb2b11292622efb3ccac37fMatthijs Kooijman# release Builds all targets in preparation
19a26f82145042062cb2b11292622efb3ccac37fMatthijs Kooijman# for workspace integration.
19a26f82145042062cb2b11292622efb3ccac37fMatthijs Kooijman# install-prebuilt Installs the pre-built jar files
f8fee0e2c399af59ee30c62234b47505fbd93725Matthijs Kooijman# This makefile was written to support parallel target execution.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# The following is for when we need to do postprocessing
497353b66b504f12cf8b6e166bba7cb309486dc3Daniel Lezcano# (signing) against a read-only build. If the OUTPUTDIR
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# isn't writable, the build currently crashes out.
497353b66b504f12cf8b6e166bba7cb309486dc3Daniel Lezcano # =====================================================
497353b66b504f12cf8b6e166bba7cb309486dc3Daniel Lezcano # Where to place the output, in case we're building from a read-only
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano # build area. (e.g. a release engineering build.)
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# Location for the newly built classfiles.
0ad19a3fc3de5592e2453070a818a5a41687900edlezcano# Subdirectories of these are automatically included.
# Build the unsigned sunjce_provider.jar file.
# The sunjce_provider.jar needs to be in the extension class directory,
# Build sunjce_provider.jar.
# Install sunjce_provider.jar, depending on which type is requested.