Makefile revision 908
10139N/A#
10139N/A# Copyright 2007-2008 Sun Microsystems, Inc. All Rights Reserved.
10139N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
12151N/A#
10139N/A# This code is free software; you can redistribute it and/or modify it
10139N/A# under the terms of the GNU General Public License version 2 only, as
10139N/A# published by the Free Software Foundation. Sun designates this
10139N/A# particular file as subject to the "Classpath" exception as provided
10139N/A# by Sun in the LICENSE file that accompanied this code.
10139N/A#
10139N/A# This code is distributed in the hope that it will be useful, but WITHOUT
10139N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10139N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14030N/A# version 2 for more details (a copy is included in the LICENSE file that
14030N/A# accompanied this code).
14133N/A#
12578N/A# You should have received a copy of the GNU General Public License version
10139N/A# 2 along with this work; if not, write to the Free Software Foundation,
10139N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
10139N/A#
11256N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
10142N/A# CA 95054 USA or visit www.sun.com if you need additional information or
12773N/A# have any questions.
12773N/A#
12773N/A
11358N/A#
10139N/A# Makefile for building jce.jar and the various cryptographic strength
11358N/A# policy jar files.
11358N/A#
11358N/A
11358N/A#
11358N/A# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds
11358N/A# respectively.)
14126N/A#
11002N/A# JCE builds are very different between OpenJDK and JDK. The OpenJDK JCE
13025N/A# jar files do not require signing, but those for JDK do. If an unsigned
13025N/A# jar file is installed into JDK, things will break when the crypto
13907N/A# routines are called.
13907N/A#
13664N/A# This Makefile does the "real" build of the JCE files. There are some
13664N/A# javac options currently specific to JCE, so we recompile now to make
14520N/A# sure any implicit compilations didn't use any incorrect flags.
14467N/A#
14362N/A# For OpenJDK, the jar files built here are installed directly into the
15230N/A# OpenJDK.
14362N/A#
14568N/A# For JDK, the binaries use pre-built/pre-signed/pre-obfuscated binary
14568N/A# files stored in the closed workspace that are not shipped in the
15247N/A# OpenJDK workspaces. We still build the JDK files here to verify the
15247N/A# files compile, and in preparation for possible signing and
10139N/A# obfuscation. Developers working on JCE in JDK must sign the JCE files
10139N/A# before testing: obfuscation is optional during development. The JCE
10139N/A# signing key is kept separate from the JDK workspace to prevent its
10139N/A# disclosure. The obfuscation tool has not been licensed for general
10139N/A# usage.
10139N/A#
10139N/A# SPECIAL NOTE TO JCE/JDK developers: The source files must eventually
10139N/A# be built, obfuscated, signed, and the resulting jar files *MUST BE
10139N/A# CHECKED INTO THE CLOSED PART OF THE WORKSPACE*. This separate step
10139N/A# *MUST NOT BE FORGOTTEN*, otherwise a bug fixed in the source code will
10139N/A# not be reflected in the shipped binaries. The "release" target should
10139N/A# be used to generate the required files.
10139N/A#
10139N/A# There are a number of targets to help both JDK/OpenJDK developers.
10139N/A#
10139N/A# Main Targets (JDK/OPENJDK):
10139N/A#
10139N/A# all/clobber/clean The usual.
10139N/A# If OpenJDK, installs
10139N/A# jce.jar/limited policy files.
10139N/A# If JDK, installs prebuilt
10139N/A# jce.jar/limited policy files.
10139N/A#
10139N/A# jar Builds/installs jce.jar
10139N/A# If OpenJDK, does not sign
10139N/A# If JDK, tries to sign
10139N/A#
10139N/A# Other lesser-used Targets (JDK/OPENJDK):
10139N/A#
10139N/A# build-jar Builds jce.jar (does not sign/install)
10139N/A#
10139N/A# build-policy Builds policy files (does not sign/install)
10139N/A#
10139N/A# install-jar Alias for "jar" above
10139N/A#
10139N/A# install-limited Builds/installs limited policy files
10139N/A# If OpenJDK, does not sign
10139N/A# If JDK, tries to sign
10139N/A# install-unlimited Builds/nstalls unlimited policy files
10139N/A# If OpenJDK, does not sign
10139N/A# If JDK, tries to sign
10139N/A#
10139N/A# Other targets (JDK only):
10139N/A#
10139N/A# sign Alias for sign-jar and sign-policy
10139N/A# sign-jar Builds/signs jce.jar file (no install)
10139N/A# sign-policy Builds/signs policy files (no install)
10139N/A#
10139N/A# obfus Builds/obfuscates/signs jce.jar
10139N/A#
10139N/A# release Builds all targets in preparation
10139N/A# for workspace integration.
10139N/A#
10139N/A# install-prebuilt Installs the pre-built jar files
10139N/A#
12274N/A# This makefile was written to support parallel target execution.
12274N/A#
12274N/A
12274N/ABUILDDIR = ../..
10139N/APACKAGE = javax.crypto
10139N/APRODUCT = sun
10139N/A
10139N/A#
10142N/A# The following is for when we need to do postprocessing
10139N/A# (signing/obfuscation) against a read-only build. If the OUTPUTDIR
10139N/A# isn't writable, the build currently crashes out.
11358N/A#
10139N/Aifndef OPENJDK
11358N/A ifdef ALT_JCE_BUILD_DIR
11358N/A # =====================================================
11358N/A # Where to place the output, in case we're building from a read-only
11358N/A # build area. (e.g. a release engineering build.)
11002N/A JCE_BUILD_DIR=${ALT_JCE_BUILD_DIR}
13025N/A IGNORE_WRITABLE_OUTPUTDIR_TEST=true
12830N/A else
13664N/A JCE_BUILD_DIR=${TEMPDIR}
14495N/A endif
15247N/Aendif
14568N/A
15247N/Ainclude $(BUILDDIR)/common/Defs.gmk
10139N/A
10139N/A#
10139N/A# Location for the newly built classfiles.
10139N/A#
10139N/ACLASSDESTDIR = $(TEMPDIR)/classes
10139N/A
10139N/A#
10139N/A# Subdirectories of these are automatically included.
10139N/A#
10139N/AAUTO_FILES_JAVA_DIRS = \
10139N/A javax/crypto \
10139N/A sun/security/internal/interfaces \
10139N/A sun/security/internal/spec
10139N/A
10139N/Ainclude $(BUILDDIR)/common/Classes.gmk
10139N/A
10139N/A#
10139N/A# Rules
10139N/A#
10139N/A
10139N/A#
10139N/A# Some licensees do not get the security sources, but we still need to
10139N/A# be able to build "all" for them. Check here to see if the sources were
10617N/A# available. If not, then we don't need to continue this rule.
10139N/A#
10139N/A
10617N/Aifdef OPENJDK
10139N/Aall: build-jar install-jar build-policy install-limited
10139N/Aelse # OPENJDK
10139N/Aifeq ($(strip $(FILES_java)),)
10139N/Aall:
10139N/A $(no-source-warning)
12773N/Aelse # FILES_java/policy files available
12773N/Aall: build-jar build-policy
12773N/A $(build-warning)
12773N/Aendif # $(FILES_java)/policy files available
12773N/Aendif # OPENJDK
10139N/A
10139N/A#
10139N/A# We use a variety of subdirectories in the $(TEMPDIR) depending on what
10139N/A# part of the build we're doing. Both OPENJDK/JDK builds are initially
10139N/A# done in the unsigned area. When files are signed or obfuscated in JDK,
10139N/A# they will be placed in the appropriate areas.
10139N/A#
10139N/AUNSIGNED_DIR = $(TEMPDIR)/unsigned
10139N/A
10139N/Ainclude Defs-jce.gmk
10139N/A
10139N/A
11189N/A# =====================================================
11155N/A# Build the unsigned jce.jar file. Signing/obfuscation comes later.
12830N/A#
10617N/A
10139N/AJAR_DESTFILE = $(LIBDIR)/jce.jar
10139N/A
10139N/A#
10139N/A# JCE building is somewhat involved.
10139N/A#
10139N/A# OpenJDK: Since we do not ship prebuilt JCE files, previous compiles
10139N/A# in the build may have needed JCE class signatures. There were then
10139N/A# implicitly built by javac (likely using the boot javac). While using
10139N/A# those class files was fine for signatures, we need to rebuild using
10139N/A# the right compiler.
12893N/A#
10139N/A# JDK: Even through the jce.jar was previously installed, since the
10139N/A# source files are accessible in the source directories, they will
11358N/A# always be "newer" than the prebuilt files inside the jar, and thus
11358N/A# make will always rebuild them. (We could "hide" the JCE source in a
11358N/A# separate directory, but that would make the build logic for JDK and
11358N/A# OpenJDK more complicated.)
10248N/A#
10248N/A# Thus in either situation, we shouldn't use these files.
10139N/A#
10139N/A# To make sure the classes were built with the right compiler options,
10139N/A# delete the existing files in $(CLASSBINDIR), rebuild the right way in a
10139N/A# directory under $(TEMPDIR), then copy the files back to
10139N/A# $(CLASSBINDIR). Building in $(TEMPDIR) allows us to use our make
10139N/A# infrastructure without modification: .classes.list, macros, etc.
10139N/A#
10139N/A
10139N/A#
10139N/A# The list of directories that will be remade from scratch, using the
10139N/A# right compilers/options.
10139N/A#
10139N/ADELETE_DIRS = $(patsubst %, $(CLASSBINDIR)/%, $(AUTO_FILES_JAVA_DIRS))
10139N/A
10139N/A#
10139N/A# Since the -C option to jar is used below, each directory entry must be
10139N/A# preceded with the appropriate directory to "cd" into.
10139N/A#
10139N/AJAR_DIRS = $(patsubst %, -C $(CLASSDESTDIR) %, $(AUTO_FILES_JAVA_DIRS))
10139N/A
10139N/Abuild-jar: $(UNSIGNED_DIR)/jce.jar
10139N/A
10139N/A#
10139N/A# Build jce.jar, then replace the previously built JCE files in the
10139N/A# classes directory with these. This ensures we have consistently built
10139N/A# files throughout the workspaces.
10139N/A#
10139N/A$(UNSIGNED_DIR)/jce.jar: prebuild build $(JCE_MANIFEST_FILE)
10139N/A $(prep-target)
10139N/A $(BOOT_JAR_CMD) cmf $(JCE_MANIFEST_FILE) $@ $(JAR_DIRS) \
10139N/A $(BOOT_JAR_JFLAGS)
10139N/A $(CP) -r $(CLASSDESTDIR)/* $(CLASSBINDIR)
10139N/A @$(java-vm-cleanup)
10139N/A
10139N/Abuild: prebuild
10139N/A
10139N/Aprebuild:
10139N/A $(RM) -r $(DELETE_DIRS)
10139N/A
10139N/A
10139N/A# =====================================================
10139N/A# Build the unsigned policy files.
10139N/A#
10139N/A# Given the current state of world export/import policies,
10139N/A# these settings work for Sun's situation. This note is not
10139N/A# legal guidance, you must still resolve any export/import issues
10139N/A# applicable for your situation. Contact your export/import
10139N/A# counsel for more information.
10139N/A#
10139N/A
10139N/APOLICY_DESTDIR = $(LIBDIR)/security
10139N/AUNSIGNED_POLICY_BUILDDIR = $(UNSIGNED_DIR)/policy
10139N/A
10139N/Abuild-policy: unlimited limited
15247N/A
15247N/A#
15230N/A# Build the unsigned unlimited policy files.
15230N/A#
14468N/Aunlimited: \
14468N/A $(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar \
14362N/A $(UNSIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar
14362N/A
14133N/A$(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar: \
14133N/A policy/unlimited/default_US_export.policy \
14126N/A policy/unlimited/UNLIMITED
14126N/A $(prep-target)
14014N/A $(BOOT_JAR_CMD) cmf policy/unlimited/UNLIMITED $@ \
14014N/A -C policy/unlimited default_US_export.policy \
14014N/A $(BOOT_JAR_JFLAGS)
14014N/A @$(java-vm-cleanup)
14014N/A
14014N/A$(UNSIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar: \
14014N/A policy/unlimited/default_local.policy \
14014N/A policy/unlimited/UNLIMITED
13907N/A $(prep-target)
13907N/A $(BOOT_JAR_CMD) cmf policy/unlimited/UNLIMITED $@ \
13819N/A -C policy/unlimited default_local.policy \
13819N/A $(BOOT_JAR_JFLAGS)
13786N/A @$(java-vm-cleanup)
13786N/A
13786N/A#
13786N/A# Build the unsigned limited policy files.
13786N/A#
13491N/A# NOTE: We currently do not place restrictions on our limited export
13453N/A# policy. This was not a typo.
13453N/A#
13453N/Alimited: \
13317N/A $(UNSIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar \
13318N/A $(UNSIGNED_POLICY_BUILDDIR)/limited/local_policy.jar
13083N/A
13083N/A$(UNSIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar: \
13083N/A $(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar
13024N/A $(install-file)
13024N/A
12985N/A$(UNSIGNED_POLICY_BUILDDIR)/limited/local_policy.jar: \
12985N/A policy/limited/default_local.policy \
12985N/A policy/limited/exempt_local.policy \
12985N/A policy/limited/LIMITED
12985N/A $(prep-target)
12985N/A $(BOOT_JAR_CMD) cmf policy/limited/LIMITED $@ \
12973N/A -C policy/limited default_local.policy \
12973N/A -C policy/limited exempt_local.policy \
12872N/A $(BOOT_JAR_JFLAGS)
12872N/A @$(java-vm-cleanup)
12893N/A
12830N/AUNSIGNED_POLICY_FILES = \
12830N/A $(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar \
12797N/A $(UNSIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar \
12797N/A $(UNSIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar \
12578N/A $(UNSIGNED_POLICY_BUILDDIR)/limited/local_policy.jar \
12797N/A
12508N/A
12508N/Aifndef OPENJDK
12151N/A# =====================================================
12151N/A# Sign the various jar files. Not needed for OpenJDK.
11991N/A#
11991N/A
11991N/ASIGNED_DIR = $(JCE_BUILD_DIR)/signed
11989N/ASIGNED_POLICY_BUILDDIR = $(SIGNED_DIR)/policy
11989N/A
11898N/ASIGNED_POLICY_FILES = \
11898N/A $(patsubst $(UNSIGNED_POLICY_BUILDDIR)/%,$(SIGNED_POLICY_BUILDDIR)/%, \
11416N/A $(UNSIGNED_POLICY_FILES))
11416N/A
11358N/Asign: sign-jar sign-policy
11358N/A
11358N/Asign-jar: $(SIGNED_DIR)/jce.jar
11256N/A
11256N/Asign-policy: $(SIGNED_POLICY_FILES)
11205N/A
11205N/Aifndef ALT_JCE_BUILD_DIR
11123N/A$(SIGNED_DIR)/jce.jar: $(UNSIGNED_DIR)/jce.jar
11123N/Aelse
11072N/A#
11072N/A# We have to remove the build dependency, otherwise, we'll try to rebuild it
11002N/A# which we can't do on a read-only filesystem.
11002N/A#
10979N/A$(SIGNED_DIR)/jce.jar:
10979N/A @if [ ! -r $(UNSIGNED_DIR)/jce.jar ] ; then \
10934N/A $(ECHO) "Couldn't find $(UNSIGNED_DIR)/jce.jar"; \
10934N/A exit 1; \
10917N/A fi
10917N/Aendif
10840N/A $(call sign-file, $(UNSIGNED_DIR)/jce.jar)
10840N/A
10840N/A$(SIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar: \
10810N/A $(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar
10810N/A $(call sign-file, $<)
10776N/A
10776N/A$(SIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar: \
10776N/A $(UNSIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar
10776N/A $(call sign-file, $<)
10723N/A
10776N/A$(SIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar: \
10709N/A $(UNSIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar
10624N/A $(call sign-file, $<)
10625N/A
10625N/A$(SIGNED_POLICY_BUILDDIR)/limited/local_policy.jar: \
10625N/A $(UNSIGNED_POLICY_BUILDDIR)/limited/local_policy.jar
10624N/A $(call sign-file, $<)
10617N/A
10617N/A
10617N/A# =====================================================
10617N/A# Obfuscate/sign/install the JDK build. Not needed for OpenJDK.
10609N/A#
10609N/A
10470N/AOBFUS_DIR = $(JCE_BUILD_DIR)/obfus/jce
10470N/A
10470N/ACLOSED_DIR = $(BUILDDIR)/closed/javax/crypto
10470N/A
10470N/Aobfus: $(OBFUS_DIR)/jce.jar
10444N/A $(release-warning)
10444N/A
10444N/Aifndef ALT_JCE_BUILD_DIR
10444N/A$(OBFUS_DIR)/jce.jar: build-jar $(JCE_MANIFEST_FILE) $(OBFUS_DIR)/framework.dox
10437N/Aelse
10437N/A#
10345N/A# We have to remove the build dependency, otherwise, we'll try to rebuild it
10345N/A# which we can't do on a read-only filesystem.
10345N/A#
10279N/A$(OBFUS_DIR)/jce.jar: $(JCE_MANIFEST_FILE) $(OBFUS_DIR)/framework.dox
10279N/A @if [ ! -d $(CLASSDESTDIR) ] ; then \
10279N/A $(ECHO) "Couldn't find $(CLASSDESTDIR)"; \
10264N/A exit 1; \
10264N/A fi
10248N/Aendif
10248N/A @$(ECHO) ">>>Obfuscating JCE framework..."
10248N/A $(presign)
10248N/A $(preobfus)
10248N/A $(prep-target)
10248N/A $(CD) $(OBFUS_DIR); \
10248N/A $(OBFUSCATOR) -fv framework.dox
10155N/A @$(CD) $(OBFUS_DIR); $(java-vm-cleanup)
10155N/A @#
10139N/A @# The sun.security.internal classes are currently not obfuscated
10139N/A @# due to an obfus problem. Manually copy them to the build directory
10139N/A @# so that they are included in the jce.jar file.
10139N/A @#
10139N/A $(CP) -r $(CLASSDESTDIR)/sun $(OBFUS_DIR)/build
10139N/A $(BOOT_JAR_CMD) cmf $(JCE_MANIFEST_FILE) $@ \
10139N/A -C $(OBFUS_DIR)/build javax \
10139N/A -C $(OBFUS_DIR)/build sun \
10139N/A $(BOOT_JAR_JFLAGS)
10139N/A $(sign-target)
10139N/A @$(java-vm-cleanup)
10139N/A
10139N/A$(OBFUS_DIR)/framework.dox: $(CLOSED_DIR)/obfus/framework.dox
10139N/A @$(ECHO) ">>>Creating framework.dox"
10139N/A $(prep-target)
10139N/A $(SED) "s:@@TEMPDIR@@:$(ABS_TEMPDIR):" $< > $@
10139N/A
10139N/A#
10139N/A# The current obfuscator has a limitation in that it currently only
10139N/A# supports up to v49 class file format. Force v49 classfiles in our
10139N/A# builds for now.
10139N/A#
10139N/ATARGET_CLASS_VERSION = 5
10139N/A
10139N/A
10139N/A# =====================================================
10139N/A# Create the Release Engineering files. Obfuscated builds,
10139N/A# unlimited policy file distribution, etc.
10139N/A#
10139N/A
10139N/Arelease: $(OBFUS_DIR)/jce.jar sign-policy $(CLOSED_DIR)/doc/COPYRIGHT.html \
10139N/A $(CLOSED_DIR)/doc/README.txt
10139N/A $(RM) -r \
10139N/A $(JCE_BUILD_DIR)/release/UnlimitedJCEPolicy \
10139N/A $(JCE_BUILD_DIR)/release/jce.jar \
10139N/A $(JCE_BUILD_DIR)/release/US_export_policy.jar \
10139N/A $(JCE_BUILD_DIR)/release/local_policy.jar \
10139N/A $(JCE_BUILD_DIR)/release/UnlimitedJCEPolicy.zip
10139N/A $(MKDIR) -p $(JCE_BUILD_DIR)/release/UnlimitedJCEPolicy
10139N/A $(CP) $(OBFUS_DIR)/jce.jar $(JCE_BUILD_DIR)/release
10139N/A $(CP) \
10139N/A $(SIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar \
10139N/A $(SIGNED_POLICY_BUILDDIR)/limited/local_policy.jar \
10139N/A $(JCE_BUILD_DIR)/release
10139N/A $(CP) \
10139N/A $(SIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar \
10139N/A $(SIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar \
10139N/A $(CLOSED_DIR)/doc/COPYRIGHT.html \
10139N/A $(CLOSED_DIR)/doc/README.txt \
10139N/A $(JCE_BUILD_DIR)/release/UnlimitedJCEPolicy
10139N/A cd $(JCE_BUILD_DIR)/release ; \
10139N/A $(ZIPEXE) -qr UnlimitedJCEPolicy.zip UnlimitedJCEPolicy
10139N/A $(release-warning)
10139N/A
10139N/Aendif # OPENJDK
10139N/A
10139N/A
10139N/A# =====================================================
10139N/A# Install routines.
10139N/A#
10139N/A
10139N/A#
10139N/A# Install jce.jar, depending on which type is requested.
10139N/A#
10139N/Ainstall-jar jar: $(JAR_DESTFILE)
10139N/Aifndef OPENJDK
10139N/A $(release-warning)
10139N/Aendif
10139N/A
10139N/Aifdef OPENJDK
10139N/A$(JAR_DESTFILE): $(UNSIGNED_DIR)/jce.jar
10139N/Aelse
10139N/A$(JAR_DESTFILE): $(SIGNED_DIR)/jce.jar
10139N/Aendif
10139N/A $(install-file)
10139N/A
10139N/A#
10139N/A# Install the appropriate policy file, depending on the type of build.
10139N/A#
10139N/Aifdef OPENJDK
10139N/AINSTALL_POLICYDIR = $(UNSIGNED_POLICY_BUILDDIR)
10139N/Aelse
10139N/AINSTALL_POLICYDIR = $(SIGNED_POLICY_BUILDDIR)
10139N/Aendif
10139N/A
10139N/Ainstall-limited: \
10139N/A $(INSTALL_POLICYDIR)/limited/US_export_policy.jar \
10139N/A $(INSTALL_POLICYDIR)/limited/local_policy.jar
10139N/A $(MKDIR) -p $(POLICY_DESTDIR)
10139N/A $(RM) \
10139N/A $(POLICY_DESTDIR)/US_export_policy.jar \
10139N/A $(POLICY_DESTDIR)/local_policy.jar
10139N/A $(CP) $^ $(POLICY_DESTDIR)
10139N/Aifndef OPENJDK
10139N/A $(release-warning)
10139N/Aendif
10139N/A
10139N/Ainstall-unlimited: \
10139N/A $(INSTALL_POLICYDIR)/unlimited/US_export_policy.jar \
10139N/A $(INSTALL_POLICYDIR)/unlimited/local_policy.jar
10139N/A $(MKDIR) -p $(POLICY_DESTDIR)
10139N/A $(RM) \
10139N/A $(POLICY_DESTDIR)/US_export_policy.jar \
10139N/A $(POLICY_DESTDIR)/local_policy.jar
10139N/A $(CP) $^ $(POLICY_DESTDIR)
10139N/Aifndef OPENJDK
10139N/A $(release-warning)
10139N/Aendif
10139N/A
10139N/Aifndef OPENJDK
10139N/Ainstall-prebuilt:
10139N/A @$(ECHO) "\n>>>Installing prebuilt JCE framework..."
10139N/A $(RM) $(JAR_DESTFILE) \
10139N/A $(POLICY_DESTDIR)/US_export_policy.jar \
10139N/A $(POLICY_DESTDIR)/local_policy.jar
10139N/A $(CP) $(PREBUILT_DIR)/jce/jce.jar $(JAR_DESTFILE)
10139N/A $(CP) \
10139N/A $(PREBUILT_DIR)/jce/US_export_policy.jar \
10139N/A $(PREBUILT_DIR)/jce/local_policy.jar \
10139N/A $(POLICY_DESTDIR)
10139N/Aendif
10139N/A
10139N/A
10139N/A# =====================================================
10139N/A# Support routines.
10139N/A#
10139N/A
10139N/Aclobber clean::
10139N/A $(RM) -r $(JAR_DESTFILE) $(POLICY_DESTDIR)/US_export_policy.jar \
10139N/A $(POLICY_DESTDIR)/local_policy.jar $(DELETE_DIRS) $(TEMPDIR) \
10139N/A $(JCE_BUILD_DIR)
10139N/A
10139N/A.PHONY: build-jar jar build-policy unlimited limited install-jar \
10139N/A install-limited install-unlimited
10139N/Aifndef OPENJDK
10139N/A.PHONY: sign sign-jar sign-policy obfus release install-prebuilt
10139N/Aendif
10139N/A