1545N/A#
4596N/A# Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
1545N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1545N/A#
1545N/A# This code is free software; you can redistribute it and/or modify it
1545N/A# under the terms of the GNU General Public License version 2 only, as
2362N/A# published by the Free Software Foundation. Oracle designates this
1545N/A# particular file as subject to the "Classpath" exception as provided
2362N/A# by Oracle in the LICENSE file that accompanied this code.
1545N/A#
1545N/A# This code is distributed in the hope that it will be useful, but WITHOUT
1545N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1545N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1545N/A# version 2 for more details (a copy is included in the LICENSE file that
1545N/A# accompanied this code).
1545N/A#
1545N/A# You should have received a copy of the GNU General Public License version
1545N/A# 2 along with this work; if not, write to the Free Software Foundation,
1545N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1545N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
1545N/A#
1545N/A
1545N/A#
1674N/A# Makefile for building sunec.jar and sunec native library.
1545N/A#
1545N/A# This file was derived from make/com/sun/crypto/provider/Makefile.
1545N/A#
1545N/A
1545N/A#
1545N/A# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds
1545N/A# respectively.)
1545N/A#
1545N/A# JCE builds are very different between OpenJDK and JDK. The OpenJDK JCE
1545N/A# jar files do not require signing, but those for JDK do. If an unsigned
1545N/A# jar file is installed into JDK, things will break when the crypto
1545N/A# routines are called.
1545N/A#
1545N/A# This Makefile does the "real" build of the JCE files. For OpenJDK,
1545N/A# the jar files built here are installed directly into the OpenJDK.
1545N/A#
1545N/A# For JDK, the binaries use pre-built/pre-signed binary files stored in
1545N/A# the closed workspace that are not shipped in the OpenJDK workspaces.
1545N/A# We still build the JDK files here to verify the files compile, and in
1545N/A# preparation for possible signing. Developers working on JCE in JDK
1545N/A# must sign the JCE files before testing. The JCE signing key is kept
1545N/A# separate from the JDK workspace to prevent its disclosure.
1545N/A#
1545N/A# SPECIAL NOTE TO JCE/JDK developers: The source files must eventually
1545N/A# be built, signed, and then the resulting jar files MUST BE CHECKED
1545N/A# INTO THE CLOSED PART OF THE WORKSPACE*. This separate step *MUST NOT
1545N/A# BE FORGOTTEN*, otherwise a bug fixed in the source code will not be
1545N/A# reflected in the shipped binaries. The "release" target should be
1545N/A# used to generate the required files.
1545N/A#
1545N/A# There are a number of targets to help both JDK/OpenJDK developers.
1545N/A#
1545N/A# Main Targets (JDK/OPENJDK):
1545N/A#
1545N/A# all/clobber/clean The usual, plus the native libraries.
1545N/A# If OpenJDK, installs sunec.jar.
1545N/A# If JDK, installs prebuilt
1545N/A# sunec.jar.
1545N/A#
1545N/A# jar Builds/installs sunec.jar
1545N/A# If OpenJDK, does not sign.
1545N/A# If JDK, tries to sign.
1545N/A#
1545N/A# Other lesser-used Targets (JDK/OPENJDK):
1545N/A#
1545N/A# build-jar Builds sunec.jar
1545N/A# (does not sign/install)
1545N/A#
1545N/A# install-jar Alias for "jar" above.
1545N/A#
1545N/A# Other targets (JDK only):
1545N/A#
1545N/A# sign Alias for sign-jar
1545N/A# sign-jar Builds/signs sunec.jar (no install)
1545N/A#
1545N/A# release Builds all targets in preparation
1545N/A# for workspace integration.
1545N/A#
1545N/A# install-prebuilt Installs the pre-built jar files
1545N/A#
1545N/A# This makefile was written to support parallel target execution.
1545N/A#
1545N/A
1545N/ABUILDDIR = ../../..
1545N/APACKAGE = sun.security.ec
1545N/APRODUCT = sun
1545N/A
1545N/A#
1545N/A# The following is for when we need to do postprocessing
1545N/A# (signing) against a read-only build. If the OUTPUTDIR
1545N/A# isn't writable, the build currently crashes out.
1545N/A#
1545N/Aifndef OPENJDK
1545N/A ifdef ALT_JCE_BUILD_DIR
1545N/A # =====================================================
1545N/A # Where to place the output, in case we're building from a read-only
1545N/A # build area. (e.g. a release engineering build.)
1545N/A JCE_BUILD_DIR=${ALT_JCE_BUILD_DIR}
1545N/A IGNORE_WRITABLE_OUTPUTDIR_TEST=true
1545N/A else
1545N/A JCE_BUILD_DIR=${TEMPDIR}
1545N/A endif
1545N/Aendif
1545N/A
1545N/Ainclude $(BUILDDIR)/common/Defs.gmk
1545N/A
1545N/A#
1545N/A# Location for the newly built classfiles.
1545N/A#
1545N/ACLASSDESTDIR = $(TEMPDIR)/classes
1545N/A
1545N/A#
1545N/A# Java files
1545N/A#
1545N/AAUTO_FILES_JAVA_DIRS = $(PKGDIR)
1545N/A
1674N/A#
1674N/A# Exclude the sources that get built by ../other/Makefile
1674N/A#
1674N/AAUTO_JAVA_PRUNE = \
1674N/A ECKeyFactory.java \
1674N/A ECParameters.java \
1674N/A ECPrivateKeyImpl.java \
1674N/A ECPublicKeyImpl.java \
1674N/A NamedCurve.java
1545N/A
1545N/A#
1545N/A# Some licensees do not get the native ECC sources, but we still need to
1545N/A# be able to build "all" for them. Check here to see if the sources are
1545N/A# available. If not, then skip them.
1545N/A#
1545N/A
1545N/ANATIVE_ECC_AVAILABLE := $(shell \
1674N/A if [ -d $(SHARE_SRC)/native/$(PKGDIR)/impl ] ; then \
1545N/A $(ECHO) true; \
1545N/A else \
1545N/A $(ECHO) false; \
1545N/A fi)
1545N/A
1545N/Aifeq ($(NATIVE_ECC_AVAILABLE), true)
1545N/A
1674N/A LIBRARY = sunec
1545N/A
1545N/A #
1545N/A # Java files that define native methods
1545N/A #
1545N/A FILES_export = \
1545N/A $(PKGDIR)/ECDHKeyAgreement.java \
1545N/A $(PKGDIR)/ECDSASignature.java \
1545N/A $(PKGDIR)/ECKeyPairGenerator.java
1545N/A
5108N/A JAVAHFLAGS = -bootclasspath \
5108N/A "$(CLASSDESTDIR)$(CLASSPATH_SEPARATOR)$(CLASSBINDIR)$(JCE_PATH)"
1545N/A
1545N/A #
1545N/A # C and C++ files
1545N/A #
1545N/A include FILES_c.gmk
1545N/A
1545N/A FILES_cpp = ECC_JNI.cpp
1545N/A
1545N/A CPLUSPLUSLIBRARY=true
1545N/A
1545N/A FILES_m = mapfile-vers
1545N/A
1545N/A #
1545N/A # Find native code
1545N/A #
1545N/A vpath %.cpp $(SHARE_SRC)/native/$(PKGDIR)
1545N/A
1674N/A vpath %.c $(SHARE_SRC)/native/$(PKGDIR)/impl
1545N/A
1545N/A #
1545N/A # Find include files
1545N/A #
1674N/A OTHER_INCLUDES += -I$(SHARE_SRC)/native/$(PKGDIR)/impl
1545N/A
1545N/A #
1545N/A # Compiler flags
1545N/A #
1545N/A OTHER_CFLAGS += -DMP_API_COMPATIBLE -DNSS_ECC_MORE_THAN_SUITE_B
1545N/A
1545N/A #
1545N/A # Libraries to link
1545N/A #
1545N/A ifeq ($(PLATFORM), windows)
1545N/A OTHER_LDLIBS += $(JVMLIB)
1545N/A else
4632N/A OTHER_LDLIBS = $(LIBDL) $(JVMLIB) $(LIBCXX)
1545N/A endif
1545N/A
1545N/A include $(BUILDDIR)/common/Mapfile-vers.gmk
1545N/A
1545N/A include $(BUILDDIR)/common/Library.gmk
1545N/A
1674N/Aelse # NATIVE_ECC_AVAILABLE
1674N/A
1674N/A include $(BUILDDIR)/common/Classes.gmk
1674N/A
1545N/Aendif # NATIVE_ECC_AVAILABLE
1545N/A
1545N/A#
1545N/A# We use a variety of subdirectories in the $(TEMPDIR) depending on what
1545N/A# part of the build we're doing. Both OPENJDK/JDK builds are initially
1545N/A# done in the unsigned area. When files are signed in JDK,
1545N/A# they will be placed in the appropriate area.
1545N/A#
1545N/AUNSIGNED_DIR = $(TEMPDIR)/unsigned
1545N/A
1545N/Ainclude $(BUILDDIR)/javax/crypto/Defs-jce.gmk
1545N/A
1545N/A#
1545N/A# Rules
1545N/A#
1545N/A
1545N/Aifdef OPENJDK
1545N/Aall: build-jar install-jar
1545N/Aelse
1545N/Aall: build-jar install-prebuilt
1545N/A $(build-warning)
1545N/Aendif
1545N/A
1545N/A
1545N/A# =====================================================
1545N/A# Build the unsigned sunec.jar file.
1545N/A#
1545N/A
1545N/AJAR_DESTFILE = $(EXTDIR)/sunec.jar
1545N/A
1545N/A#
1545N/A# Since the -C option to jar is used below, each directory entry must be
1545N/A# preceded with the appropriate directory to "cd" into.
1545N/A#
1545N/AJAR_DIRS = $(patsubst %, -C $(CLASSDESTDIR) %, $(AUTO_FILES_JAVA_DIRS))
1545N/A
1545N/Abuild-jar: $(UNSIGNED_DIR)/sunec.jar
1545N/A
1545N/A#
1545N/A# Build sunec.jar.
1545N/A#
5434N/A$(UNSIGNED_DIR)/sunec.jar: build $(JCE_MANIFEST_FILE)
1545N/A $(prep-target)
5434N/A $(BOOT_JAR_CMD) cmf $(JCE_MANIFEST_FILE) $@ $(JAR_DIRS) \
1545N/A $(BOOT_JAR_JFLAGS)
1545N/A @$(java-vm-cleanup)
1545N/A
1545N/A
1545N/Aifndef OPENJDK
1545N/A# =====================================================
1545N/A# Sign the provider jar file. Not needed for OpenJDK.
1545N/A#
1545N/A
1545N/ASIGNED_DIR = $(JCE_BUILD_DIR)/signed
1545N/A
1545N/Asign: sign-jar
1545N/A
1545N/Asign-jar: $(SIGNED_DIR)/sunec.jar
1545N/A
1545N/Aifndef ALT_JCE_BUILD_DIR
1545N/A$(SIGNED_DIR)/sunec.jar: $(UNSIGNED_DIR)/sunec.jar
1545N/Aelse
1545N/A#
1545N/A# We have to remove the build dependency, otherwise, we'll try to rebuild it
1545N/A# which we can't do on a read-only filesystem.
1545N/A#
1545N/A$(SIGNED_DIR)/sunec.jar:
1545N/A @if [ ! -r $(UNSIGNED_DIR)/sunec.jar ] ; then \
1545N/A $(ECHO) "Couldn't find $(UNSIGNED_DIR)/sunec.jar"; \
1545N/A exit 1; \
1545N/A fi
1545N/Aendif
1545N/A $(call sign-file, $(UNSIGNED_DIR)/sunec.jar)
1545N/A
1545N/A
1545N/A# =====================================================
1545N/A# Create the Release Engineering files. Signed builds, etc.
1545N/A#
1545N/A
1545N/Arelease: $(SIGNED_DIR)/sunec.jar
1545N/A $(RM) $(JCE_BUILD_DIR)/release/sunec.jar
1545N/A $(MKDIR) -p $(JCE_BUILD_DIR)/release
1545N/A $(CP) $(SIGNED_DIR)/sunec.jar $(JCE_BUILD_DIR)/release
1545N/A $(release-warning)
1545N/A
1545N/Aendif # OPENJDK
1545N/A
1545N/A
1545N/A# =====================================================
1545N/A# Install routines.
1545N/A#
1545N/A
1545N/A#
1545N/A# Install sunec.jar, depending on which type is requested.
1545N/A#
1545N/Ainstall-jar jar: $(JAR_DESTFILE)
1545N/Aifndef OPENJDK
1545N/A $(release-warning)
1545N/Aendif
1545N/A
1545N/Aifdef OPENJDK
1545N/A$(JAR_DESTFILE): $(UNSIGNED_DIR)/sunec.jar
1545N/Aelse
1545N/A$(JAR_DESTFILE): $(SIGNED_DIR)/sunec.jar
1545N/Aendif
3686N/A $(install-file)
1545N/A
1545N/Aifndef OPENJDK
1545N/Ainstall-prebuilt:
1545N/A @$(ECHO) "\n>>>Installing prebuilt SunEC provider..."
1545N/A $(RM) $(JAR_DESTFILE)
1545N/A $(CP) $(PREBUILT_DIR)/ec/sunec.jar $(JAR_DESTFILE)
1545N/Aendif
1545N/A
1545N/A
1545N/A# =====================================================
1545N/A# Support routines.
1545N/A#
1545N/A
1545N/Aclobber clean::
1545N/A $(RM) -r $(JAR_DESTFILE) $(TEMPDIR) $(JCE_BUILD_DIR)
1545N/A
1545N/A.PHONY: build-jar jar install-jar
1545N/Aifndef OPENJDK
1545N/A.PHONY: sign sign-jar release install-prebuilt
1545N/Aendif