Makefile revision 3686
830N/A#
830N/A# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
830N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
830N/A#
830N/A# This code is free software; you can redistribute it and/or modify it
830N/A# under the terms of the GNU General Public License version 2 only, as
830N/A# published by the Free Software Foundation. Oracle designates this
830N/A# particular file as subject to the "Classpath" exception as provided
830N/A# by Oracle in the LICENSE file that accompanied this code.
830N/A#
830N/A# This code is distributed in the hope that it will be useful, but WITHOUT
830N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
830N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
830N/A# version 2 for more details (a copy is included in the LICENSE file that
830N/A# accompanied this code).
830N/A#
830N/A# You should have received a copy of the GNU General Public License version
830N/A# 2 along with this work; if not, write to the Free Software Foundation,
830N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
830N/A#
830N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
830N/A# or visit www.oracle.com if you need additional information or have any
839N/A# questions.
839N/A#
830N/A
830N/A#
830N/A# Makefile for building sunmscapi.jar and native libraries.
830N/A#
830N/A# This file was derived from make/com/sun/crypto/provider/Makefile.
830N/A#
830N/A
830N/A#
830N/A# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds
830N/A# respectively.)
830N/A#
830N/A# JCE builds are very different between OpenJDK and JDK. The OpenJDK JCE
830N/A# jar files do not require signing, but those for JDK do. If an unsigned
830N/A# jar file is installed into JDK, things will break when the crypto
830N/A# routines are called.
844N/A#
844N/A# This Makefile does the "real" build of the JCE files. For OpenJDK,
830N/A# the jar files built here are installed directly into the OpenJDK.
830N/A#
830N/A# For JDK, the binaries use pre-built/pre-signed binary files stored in
830N/A# the closed workspace that are not shipped in the OpenJDK workspaces.
830N/A# We still build the JDK files here to verify the files compile, and in
830N/A# preparation for possible signing. Developers working on JCE in JDK
830N/A# must sign the JCE files before testing. The JCE signing key is kept
830N/A# separate from the JDK workspace to prevent its disclosure.
830N/A#
830N/A# SPECIAL NOTE TO JCE/JDK developers: The source files must eventually
830N/A# be built, signed, and then the resulting jar files MUST BE CHECKED
830N/A# INTO THE CLOSED PART OF THE WORKSPACE*. This separate step *MUST NOT
830N/A# BE FORGOTTEN*, otherwise a bug fixed in the source code will not be
830N/A# reflected in the shipped binaries. The "release" target should be
844N/A# used to generate the required files.
844N/A#
830N/A# There are a number of targets to help both JDK/OpenJDK developers.
902N/A#
902N/A# Main Targets (JDK/OPENJDK):
854N/A#
854N/A# all/clobber/clean The usual, plus the native libraries.
830N/A# If OpenJDK, installs sunmscapi.jar.
830N/A# If JDK, installs prebuilt
830N/A# sunmscapi.jar.
902N/A#
854N/A# jar Builds/installs sunmscapi.jar
854N/A# If OpenJDK, does not sign.
854N/A# If JDK, tries to sign.
854N/A#
854N/A# Other lesser-used Targets (JDK/OPENJDK):
854N/A#
865N/A# build-jar Builds sunmscapi.jar
1058N/A# (does not sign/install)
1240N/A#
1240N/A# install-jar Alias for "jar" above.
854N/A#
902N/A# Other targets (JDK only):
902N/A#
902N/A# sign Alias for sign-jar
830N/A# sign-jar Builds/signs sunmscapi.jar (no install)
830N/A#
830N/A# release Builds all targets in preparation
830N/A# for workspace integration.
830N/A#
830N/A# install-prebuilt Installs the pre-built jar files
830N/A#
830N/A# This makefile was written to support parallel target execution.
830N/A#
830N/A
830N/ABUILDDIR = ../../..
830N/APACKAGE = sun.security.mscapi
830N/ALIBRARY = sunmscapi
830N/APRODUCT = sun
830N/A
902N/A#
902N/A# The following is for when we need to do postprocessing
902N/A# (signing/obfuscation) against a read-only build. If the OUTPUTDIR
830N/A# isn't writable, the build currently crashes out.
902N/A#
830N/Aifndef OPENJDK
830N/A ifdef ALT_JCE_BUILD_DIR
830N/A # =====================================================
830N/A # Where to place the output, in case we're building from a read-only
902N/A # build area. (e.g. a release engineering build.)
830N/A JCE_BUILD_DIR=${ALT_JCE_BUILD_DIR}
830N/A IGNORE_WRITABLE_OUTPUTDIR_TEST=true
830N/A else
830N/A JCE_BUILD_DIR=${TEMPDIR}
830N/A endif
830N/Aendif
830N/A
830N/Ainclude $(BUILDDIR)/common/Defs.gmk
830N/A
830N/ACPLUSPLUSLIBRARY=true
830N/A
830N/A#
830N/A# C++ and Java Files
830N/A#
830N/Ainclude FILES_cpp.gmk
830N/A
990N/AAUTO_FILES_JAVA_DIRS = sun/security/mscapi
990N/A
990N/A#
990N/A# Java files that define native methods
990N/A#
990N/AFILES_export = \
990N/A sun/security/mscapi/KeyStore.java \
990N/A sun/security/mscapi/Key.java \
990N/A sun/security/mscapi/PRNG.java \
990N/A sun/security/mscapi/RSACipher.java \
990N/A sun/security/mscapi/RSAPublicKey.java \
990N/A sun/security/mscapi/RSASignature.java \
990N/A sun/security/mscapi/RSAKeyPairGenerator.java
990N/A
990N/A#
990N/A# Find native code
990N/A#
830N/Avpath %.cpp \
990N/A $(PLATFORM_SRC)/native/sun/security/mscapi
990N/A
830N/A#
830N/A# Find include files
830N/A#
830N/AOTHER_INCLUDES += \
830N/A -I$(PLATFORM_SRC)/native/sun/security/mscapi
830N/A
830N/A#
830N/A# Rules
830N/A#
830N/ACLASSDESTDIR = $(TEMPDIR)/classes
830N/AJAVAHFLAGS += -classpath $(CLASSDESTDIR)
830N/A
830N/Ainclude $(BUILDDIR)/common/Mapfile-vers.gmk
830N/A
830N/Ainclude $(BUILDDIR)/common/Library.gmk
830N/A
#
# Libraries to link
#
ifeq ($(PLATFORM), windows)
OTHER_LDLIBS += $(JVMLIB) Crypt32.Lib
endif
#
# 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.
#
UNSIGNED_DIR = $(TEMPDIR)/unsigned
#
# Rules
#
ifdef OPENJDK
all: build-jar install-jar
else
all: build-jar install-prebuilt
$(build-warning)
endif
include $(BUILDDIR)/javax/crypto/Defs-jce.gmk
# =====================================================
# Build the unsigned sunmscapi.jar file.
#
JAR_DESTFILE = $(EXTDIR)/sunmscapi.jar
#
# 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.
#
JAR_DIRS = $(patsubst %, -C $(CLASSDESTDIR) %, $(AUTO_FILES_JAVA_DIRS))
build-jar: $(UNSIGNED_DIR)/sunmscapi.jar
#
# Build sunmscapi.jar.
#
$(UNSIGNED_DIR)/sunmscapi.jar: build
$(prep-target)
$(BOOT_JAR_CMD) cf $@ $(JAR_DIRS) \
$(BOOT_JAR_JFLAGS)
@$(java-vm-cleanup)
ifndef OPENJDK
# =====================================================
# Sign the provider jar file. Not needed for OpenJDK.
#
SIGNED_DIR = $(JCE_BUILD_DIR)/signed
sign: sign-jar
sign-jar: $(SIGNED_DIR)/sunmscapi.jar
ifndef ALT_JCE_BUILD_DIR
$(SIGNED_DIR)/sunmscapi.jar: $(UNSIGNED_DIR)/sunmscapi.jar
else
#
# We have to remove the build dependency, otherwise, we'll try to rebuild it
# which we can't do on a read-only filesystem.
#
$(SIGNED_DIR)/sunmscapi.jar:
@if [ ! -r $(UNSIGNED_DIR)/sunmscapi.jar ] ; then \
$(ECHO) "Couldn't find $(UNSIGNED_DIR)/sunmscapi.jar"; \
exit 1; \
fi
endif
$(call sign-file, $(UNSIGNED_DIR)/sunmscapi.jar)
# =====================================================
# Create the Release Engineering files. Signed builds, etc.
#
release: $(SIGNED_DIR)/sunmscapi.jar
$(RM) $(JCE_BUILD_DIR)/release/sunmscapi.jar
$(MKDIR) -p $(JCE_BUILD_DIR)/release
$(CP) $(SIGNED_DIR)/sunmscapi.jar $(JCE_BUILD_DIR)/release
$(release-warning)
endif # OPENJDK
# =====================================================
# Install routines.
#
#
# Install sunmscapi.jar, depending on which type is requested.
#
install-jar jar: $(JAR_DESTFILE)
ifndef OPENJDK
$(release-warning)
endif
ifdef OPENJDK
$(JAR_DESTFILE): $(UNSIGNED_DIR)/sunmscapi.jar
else
$(JAR_DESTFILE): $(SIGNED_DIR)/sunmscapi.jar
endif
$(install-file)
ifndef OPENJDK
install-prebuilt:
@$(ECHO) "\n>>>Installing prebuilt SunMSCAPI provider..."
$(RM) $(JAR_DESTFILE)
$(CP) $(PREBUILT_DIR)/mscapi/sunmscapi.jar $(JAR_DESTFILE)
endif
# =====================================================
# Support routines.
#
clobber clean::
$(RM) -r $(JAR_DESTFILE) $(TEMPDIR) $(JCE_BUILD_DIR)
.PHONY: build-jar jar install-jar
ifndef OPENJDK
.PHONY: sign sign-jar release install-prebuilt
endif