Makefile revision 4596
0N/A#
2273N/A# Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
0N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
1472N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1472N/A#
1472N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A# or visit www.oracle.com if you need additional information or have any
0N/A# questions.
0N/A#
1879N/A
1879N/A#
1879N/A# Makefile for building sunpkcs11.jar and native libraries.
1879N/A#
1879N/A# This file was derived from make/com/sun/crypto/provider/Makefile.
1879N/A#
2845N/A
1879N/A#
1879N/A# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds
1879N/A# respectively.)
1879N/A#
1879N/A# JCE builds are very different between OpenJDK and JDK. The OpenJDK JCE
1879N/A# jar files do not require signing, but those for JDK do. If an unsigned
1879N/A# jar file is installed into JDK, things will break when the crypto
1879N/A# routines are called.
1879N/A#
1879N/A# This Makefile does the "real" build of the JCE files. For OpenJDK,
1879N/A# the jar files built here are installed directly into the OpenJDK.
2796N/A#
2796N/A# For JDK, the binaries use pre-built/pre-signed binary files stored in
2796N/A# the closed workspace that are not shipped in the OpenJDK workspaces.
0N/A# We still build the JDK files here to verify the files compile, and in
0N/A# preparation for possible signing. Developers working on JCE in JDK
0N/A# must sign the JCE files before testing. The JCE signing key is kept
0N/A# separate from the JDK workspace to prevent its disclosure.
0N/A#
0N/A# SPECIAL NOTE TO JCE/JDK developers: The source files must eventually
481N/A# be built, signed, and then the resulting jar files MUST BE CHECKED
481N/A# INTO THE CLOSED PART OF THE WORKSPACE*. This separate step *MUST NOT
0N/A# BE FORGOTTEN*, otherwise a bug fixed in the source code will not be
0N/A# reflected in the shipped binaries. The "release" target should be
1753N/A# used to generate the required files.
1753N/A#
1753N/A# There are a number of targets to help both JDK/OpenJDK developers.
481N/A#
481N/A# Main Targets (JDK/OPENJDK):
481N/A#
481N/A# all/clobber/clean The usual, plus the native libraries.
481N/A# If OpenJDK, installs sunpkcs11.jar.
481N/A# If JDK, installs prebuilt
481N/A# sunpkcs11.jar.
481N/A#
481N/A# jar Builds/installs sunpkcs11.jar
481N/A# If OpenJDK, does not sign.
0N/A# If JDK, tries to sign.
0N/A#
0N/A# Other lesser-used Targets (JDK/OPENJDK):
0N/A#
0N/A# build-jar Builds sunpkcs11.jar
0N/A# (does not sign/install)
0N/A#
0N/A# install-jar Alias for "jar" above.
0N/A#
0N/A# Other targets (JDK only):
0N/A#
0N/A# sign Alias for sign-jar
0N/A# sign-jar Builds/signs sunpkcs11.jar (no install)
0N/A#
1166N/A# release Builds all targets in preparation
0N/A# for workspace integration.
0N/A#
1166N/A# install-prebuilt Installs the pre-built jar files
1166N/A#
1166N/A# This makefile was written to support parallel target execution.
1468N/A#
1194N/A
1194N/ABUILDDIR = ../../..
1166N/APACKAGE = sun.security.pkcs11
1166N/ALIBRARY = j2pkcs11
1166N/APRODUCT = sun
1166N/A
0N/A#
0N/A# The following is for when we need to do postprocessing
0N/A# (signing/obfuscation) against a read-only build. If the OUTPUTDIR
0N/A# isn't writable, the build currently crashes out.
0N/A#
0N/Aifndef OPENJDK
0N/A ifdef ALT_JCE_BUILD_DIR
0N/A # =====================================================
0N/A # Where to place the output, in case we're building from a read-only
0N/A # build area. (e.g. a release engineering build.)
0N/A JCE_BUILD_DIR=${ALT_JCE_BUILD_DIR}
2098N/A IGNORE_WRITABLE_OUTPUTDIR_TEST=true
0N/A else
0N/A JCE_BUILD_DIR=${TEMPDIR}
0N/A endif
0N/Aendif
0N/A
0N/Ainclude $(BUILDDIR)/common/Defs.gmk
0N/A
0N/A#
0N/A# C and Java Files
0N/A#
0N/Ainclude FILES_c.gmk
0N/A
0N/A#
0N/A# Subdirectories of these are automatically included.
0N/A#
0N/AAUTO_FILES_JAVA_DIRS = sun/security/pkcs11
0N/A
0N/A#
0N/A# Java files that define native methods
0N/A#
0N/AFILES_export = \
0N/A sun/security/pkcs11/wrapper/PKCS11.java \
0N/A sun/security/pkcs11/Secmod.java
0N/A
0N/A#
0N/A# Find native code
0N/A#
0N/Avpath %.c \
0N/A $(SHARE_SRC)/native/sun/security/pkcs11/wrapper \
0N/A $(PLATFORM_SRC)/native/sun/security/pkcs11/wrapper \
0N/A
0N/A#
0N/A# Find include files
0N/A#
0N/AOTHER_INCLUDES += \
0N/A -I$(SHARE_SRC)/native/sun/security/pkcs11/wrapper \
0N/A -I$(PLATFORM_SRC)/native/sun/security/pkcs11/wrapper
0N/A
0N/A#
0N/A# Rules
0N/A#
0N/ACLASSDESTDIR = $(TEMPDIR)/classes
0N/AJAVAHFLAGS = -bootclasspath "$(CLASSDESTDIR)$(CLASSPATH_SEPARATOR)$(CLASSBINDIR)"
0N/A
0N/Ainclude $(BUILDDIR)/common/Mapfile-vers.gmk
0N/A
0N/Ainclude $(BUILDDIR)/common/Library.gmk
0N/A
0N/A#
0N/A# Libraries to link
0N/A#
0N/Aifeq ($(PLATFORM), windows)
0N/A OTHER_LDLIBS = $(JVMLIB)
0N/Aelse
0N/A OTHER_LDLIBS = -ldl $(JVMLIB)
0N/Aendif
2726N/A
2726N/A# Other config files
2726N/ASUNPKCS11_CFG =
2726N/A
2726N/Aifeq ($(PLATFORM), solaris)
2726N/ASUNPKCS11_CFG = sunpkcs11-cfg
2726N/Aendif # PLATFORM
2726N/A
0N/ASUNPKCS11_CFG_SRC = $(TOPDIR)/src/share/lib/security/sunpkcs11-solaris.cfg
0N/ASUNPKCS11_CFG_BUILD = $(LIBDIR)/security/sunpkcs11-solaris.cfg
0N/A
0N/A#
0N/A# We use a variety of subdirectories in the $(TEMPDIR) depending on what
1027N/A# part of the build we're doing. Both OPENJDK/JDK builds are initially
1027N/A# done in the unsigned area. When files are signed in JDK,
1027N/A# they will be placed in the appropriate area.
1166N/A#
1027N/AUNSIGNED_DIR = $(TEMPDIR)/unsigned
1027N/A
1027N/A#
1027N/A# Rules
1027N/A#
1166N/A
1027N/Aifdef OPENJDK
1027N/Aall: $(SUNPKCS11_CFG) build-jar install-jar
1027N/Aelse
1027N/Aall: $(SUNPKCS11_CFG) build-jar install-prebuilt
1027N/A $(build-warning)
1027N/Aendif
1027N/A
1027N/Asunpkcs11-cfg: $(SUNPKCS11_CFG_BUILD)
1027N/A
1027N/A$(SUNPKCS11_CFG_BUILD): $(SUNPKCS11_CFG_SRC)
1027N/A $(install-file)
1027N/A
1027N/Ainclude $(BUILDDIR)/javax/crypto/Defs-jce.gmk
1027N/A
1027N/A
1027N/A# =====================================================
1027N/A# Build the unsigned sunpkcs11.jar file.
1027N/A#
1027N/A
1027N/AJAR_DESTFILE = $(EXTDIR)/sunpkcs11.jar
1027N/A
1027N/A#
1027N/A# The sunpkcs11.jar needs to be in the extension class directory,
1027N/A# therefore none of its classes can appear in $(CLASSBINDIR).
1027N/A# Currently no one is using any of the PKCS11 internals, so these files
1027N/A# should not have been built.
1027N/A#
1027N/A
1166N/A#
1027N/A# Since the -C option to jar is used below, each directory entry must be
1027N/A# preceded with the appropriate directory to "cd" into.
1027N/A#
1027N/AJAR_DIRS = $(patsubst %, -C $(CLASSDESTDIR) %, $(AUTO_FILES_JAVA_DIRS))
1027N/A
1027N/Abuild-jar: $(UNSIGNED_DIR)/sunpkcs11.jar
1027N/A
1027N/A#
1027N/A# Build sunpkcs11.jar.
1027N/A#
1027N/A$(UNSIGNED_DIR)/sunpkcs11.jar: build
1027N/A $(prep-target)
1027N/A $(BOOT_JAR_CMD) cf $@ $(JAR_DIRS) \
1027N/A $(BOOT_JAR_JFLAGS)
1027N/A @$(java-vm-cleanup)
1027N/A
1027N/A
1027N/Aifndef OPENJDK
1027N/A# =====================================================
1027N/A# Sign the provider jar file. Not needed for OpenJDK.
1027N/A#
1027N/A
1166N/ASIGNED_DIR = $(JCE_BUILD_DIR)/signed
1166N/A
1027N/Asign: sign-jar
1166N/A
1166N/Asign-jar: $(SIGNED_DIR)/sunpkcs11.jar
1166N/A
1166N/Aifndef ALT_JCE_BUILD_DIR
1027N/A$(SIGNED_DIR)/sunpkcs11.jar: $(UNSIGNED_DIR)/sunpkcs11.jar
1027N/Aelse
1027N/A#
1027N/A# We have to remove the build dependency, otherwise, we'll try to rebuild it
1027N/A# which we can't do on a read-only filesystem.
1027N/A#
1027N/A$(SIGNED_DIR)/sunpkcs11.jar:
1166N/A @if [ ! -r $(UNSIGNED_DIR)/sunpkcs11.jar ] ; then \
1166N/A $(ECHO) "Couldn't find $(UNSIGNED_DIR)/sunpkcs11.jar"; \
1166N/A exit 1; \
1166N/A fi
1166N/Aendif
1166N/A $(call sign-file, $(UNSIGNED_DIR)/sunpkcs11.jar)
1166N/A
1166N/A
1166N/A# =====================================================
1166N/A# Create the Release Engineering files. Signed builds, etc.
1166N/A#
1027N/A
1027N/Arelease: $(SIGNED_DIR)/sunpkcs11.jar
1027N/A $(RM) $(JCE_BUILD_DIR)/release/sunpkcs11.jar
1027N/A $(MKDIR) -p $(JCE_BUILD_DIR)/release
481N/A $(CP) $(SIGNED_DIR)/sunpkcs11.jar $(JCE_BUILD_DIR)/release
1491N/A $(release-warning)
481N/A
481N/Aendif # OPENJDK
481N/A
1491N/A
481N/A# =====================================================
481N/A# Install routines.
481N/A#
481N/A
481N/A#
481N/A# Install sunpkcs11.jar, depending on which type is requested.
481N/A#
481N/Ainstall-jar jar: $(JAR_DESTFILE)
481N/Aifndef OPENJDK
481N/A $(release-warning)
481N/Aendif
481N/A
481N/Aifdef OPENJDK
481N/A$(JAR_DESTFILE): $(UNSIGNED_DIR)/sunpkcs11.jar
481N/Aelse
1165N/A$(JAR_DESTFILE): $(SIGNED_DIR)/sunpkcs11.jar
481N/Aendif
1165N/A $(install-file)
481N/A
481N/Aifndef OPENJDK
481N/Ainstall-prebuilt:
481N/A @$(ECHO) "\n>>>Installing prebuilt SunPKCS11 provider..."
481N/A $(RM) $(JAR_DESTFILE)
481N/A $(CP) $(PREBUILT_DIR)/pkcs11/sunpkcs11.jar $(JAR_DESTFILE)
481N/Aendif
1165N/A
481N/A
481N/A# =====================================================
481N/A# Support routines.
481N/A#
481N/A
481N/Aclobber clean::
481N/A $(RM) -r $(JAR_DESTFILE) $(TEMPDIR) $(JCE_BUILD_DIR)
481N/A $(RM) $(SUNPKCS11_CFG_BUILD)
481N/A
494N/A.PHONY: build-jar jar install-jar
1165N/Aifndef OPENJDK
481N/A.PHONY: sign sign-jar release install-prebuilt
481N/Aendif
481N/A