jdk/make/javax/crypto/Makefile
author ohair
Wed, 06 Apr 2011 22:06:11 -0700
changeset 9035 1255eb81cc2f
parent 8583 15dea0fdc2ea
child 9776 3b9d58a79b55
permissions -rw-r--r--
7033660: Update copyright year to 2011 on any files changed in 2011 Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 8583
diff changeset
     2
# Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4665
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4665
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4665
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4665
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4665
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# Makefile for building jce.jar and the various cryptographic strength
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
# policy jar files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
# (The terms "OpenJDK" and "JDK" below refer to OpenJDK and Sun JDK builds
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
# respectively.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
# JCE builds are very different between OpenJDK and JDK.  The OpenJDK JCE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
# jar files do not require signing, but those for JDK do.  If an unsigned
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
# jar file is installed into JDK, things will break when the crypto
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
# routines are called.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
# This Makefile does the "real" build of the JCE files.  There are some
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
# javac options currently specific to JCE, so we recompile now to make
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# sure any implicit compilations didn't use any incorrect flags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
# For OpenJDK, the jar files built here are installed directly into the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
# OpenJDK.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    47
# For JDK, the binaries use pre-built/pre-signed binary files stored in
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    48
# the closed workspace that are not shipped in the OpenJDK workspaces.
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    49
# We still build the JDK files here to verify the files compile, and in
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    50
# preparation for possible signing.  Developers working on JCE in JDK
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    51
# must sign the JCE files before testing.  The JCE signing key is kept
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    52
# separate from the JDK workspace to prevent its disclosure.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
# SPECIAL NOTE TO JCE/JDK developers:  The source files must eventually
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    55
# be built and signed, and the resulting jar files *MUST BE CHECKED INTO
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    56
# THE CLOSED PART OF THE WORKSPACE*.  This separate step *MUST NOT BE
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    57
# FORGOTTEN*, otherwise a bug fixed in the source code will not be
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    58
# reflected in the shipped binaries.  The "release" target should be
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    59
# used to generate the required files.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
# There are a number of targets to help both JDK/OpenJDK developers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
# Main Targets (JDK/OPENJDK):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    65
#     all/clobber/clean        The usual.
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    66
#                                  If OpenJDK: builds/installs the
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    67
#                                      jce.jar/limited policy files.
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    68
#                                  If JDK: builds but does not install.
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    69
#                                     During full tops-down builds,
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    70
#                                     prebuilt/presigned jce.jar &
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    71
#                                     limited policy files are copied
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    72
#                                     in by make/java/redist/Makefile.
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    73
#                                     If you are working in this directory
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    74
#                                     and want to install the prebuilts,
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    75
#                                     use the "install-prebuilt" target.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    77
#     jar                      Builds/installs jce.jar
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    78
#                                  If OpenJDK, does not sign
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    79
#                                  If JDK, tries to sign
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
# Other lesser-used Targets (JDK/OPENJDK):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    83
#     build-jar                Builds jce.jar (does not sign/install)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    85
#     build-policy             Builds policy files (does not sign/install)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    87
#     install-jar              Alias for "jar" above
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    89
#     install-limited          Builds/installs limited policy files
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    90
#                                  If OpenJDK, does not sign
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    91
#                                  If JDK, tries to sign
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    92
#     install-unlimited        Builds/nstalls unlimited policy files
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    93
#                                  If OpenJDK, does not sign
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    94
#                                  If JDK, tries to sign
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
# Other targets (JDK only):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    98
#     sign                     Alias for sign-jar and sign-policy
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
    99
#          sign-jar            Builds/signs jce.jar file (no install)
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   100
#          sign-policy         Builds/signs policy files (no install)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   102
#     release                  Builds all targets in preparation
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   103
#                              for workspace integration.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
#
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   105
#     install-prebuilt         Installs the pre-built jar files
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
# This makefile was written to support parallel target execution.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
BUILDDIR = ../..
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
PACKAGE = javax.crypto
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
PRODUCT = sun
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   114
#
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   115
# The following is for when we need to do postprocessing
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   116
# (signing) against a read-only build.  If the OUTPUTDIR
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   117
# isn't writable, the build currently crashes out.
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   118
#
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   119
ifndef OPENJDK
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   120
  ifdef ALT_JCE_BUILD_DIR
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   121
    # =====================================================
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   122
    # Where to place the output, in case we're building from a read-only
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   123
    # build area.  (e.g. a release engineering build.)
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   124
    JCE_BUILD_DIR=${ALT_JCE_BUILD_DIR}
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   125
    IGNORE_WRITABLE_OUTPUTDIR_TEST=true
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   126
  else
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   127
    JCE_BUILD_DIR=${TEMPDIR}
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   128
  endif
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   129
endif
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   130
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
include $(BUILDDIR)/common/Defs.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
# Location for the newly built classfiles.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
CLASSDESTDIR = $(TEMPDIR)/classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
# Subdirectories of these are automatically included.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
AUTO_FILES_JAVA_DIRS = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    javax/crypto \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    sun/security/internal/interfaces \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    sun/security/internal/spec
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
include $(BUILDDIR)/common/Classes.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
# Rules
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
# Some licensees do not get the security sources, but we still need to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
# be able to build "all" for them.  Check here to see if the sources were
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
# available.  If not, then we don't need to continue this rule.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
ifdef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
all: build-jar install-jar build-policy install-limited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
else  # OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
ifeq ($(strip $(FILES_java)),)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
all:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
	$(no-source-warning)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
else  # FILES_java/policy files available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
all: build-jar build-policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
	$(build-warning)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
endif # $(FILES_java)/policy files available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
endif # OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
# We use a variety of subdirectories in the $(TEMPDIR) depending on what
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
# part of the build we're doing.  Both OPENJDK/JDK builds are initially
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   173
# done in the unsigned area.  When files are signed in JDK, they will be
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   174
# placed in the appropriate areas.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
UNSIGNED_DIR = $(TEMPDIR)/unsigned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   178
include Defs-jce.gmk
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   179
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
# =====================================================
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   182
# Build the unsigned jce.jar file.  Signing comes later.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
JAR_DESTFILE = $(LIBDIR)/jce.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
# JCE building is somewhat involved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
# OpenJDK:  Since we do not ship prebuilt JCE files, previous compiles
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
# in the build may have needed JCE class signatures.  There were then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
# implicitly built by javac (likely using the boot javac).  While using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
# those class files was fine for signatures, we need to rebuild using
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
# the right compiler.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
# JDK:  Even through the jce.jar was previously installed, since the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
# source files are accessible in the source directories, they will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
# always be "newer" than the prebuilt files inside the jar, and thus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
# make will always rebuild them.  (We could "hide" the JCE source in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
# separate directory, but that would make the build logic for JDK and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
# OpenJDK more complicated.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
# Thus in either situation, we shouldn't use these files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
# To make sure the classes were built with the right compiler options,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
# delete the existing files in $(CLASSBINDIR), rebuild the right way in a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
# directory under $(TEMPDIR), then copy the files back to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
# $(CLASSBINDIR).   Building in $(TEMPDIR) allows us to use our make
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
# infrastructure without modification:  .classes.list, macros, etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
# The list of directories that will be remade from scratch, using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
# right compilers/options.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
DELETE_DIRS = $(patsubst %, $(CLASSBINDIR)/%, $(AUTO_FILES_JAVA_DIRS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
# Since the -C option to jar is used below, each directory entry must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
# preceded with the appropriate directory to "cd" into.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
JAR_DIRS = $(patsubst %, -C $(CLASSDESTDIR) %, $(AUTO_FILES_JAVA_DIRS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
build-jar: $(UNSIGNED_DIR)/jce.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
# Build jce.jar, then replace the previously built JCE files in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
# classes directory with these.  This ensures we have consistently built
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
# files throughout the workspaces.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
$(UNSIGNED_DIR)/jce.jar: prebuild build $(JCE_MANIFEST_FILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
	$(BOOT_JAR_CMD) cmf $(JCE_MANIFEST_FILE) $@ $(JAR_DIRS) \
916
867515b155b5 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 300
diff changeset
   234
	    $(BOOT_JAR_JFLAGS)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
	$(CP) -r $(CLASSDESTDIR)/* $(CLASSBINDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
build: prebuild
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
prebuild:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
	$(RM) -r $(DELETE_DIRS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
# =====================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
# Build the unsigned policy files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
# Given the current state of world export/import policies,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
# these settings work for Sun's situation.  This note is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
# legal guidance, you must still resolve any export/import issues
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
# applicable for your situation.  Contact your export/import
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
# counsel for more information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
POLICY_DESTDIR			= $(LIBDIR)/security
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
UNSIGNED_POLICY_BUILDDIR	= $(UNSIGNED_DIR)/policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
build-policy: unlimited limited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
# Build the unsigned unlimited policy files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
unlimited: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
	    $(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
	    $(UNSIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
$(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar:		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
	    policy/unlimited/default_US_export.policy			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
	    policy/unlimited/UNLIMITED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
	$(BOOT_JAR_CMD) cmf policy/unlimited/UNLIMITED $@		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
	    -C policy/unlimited default_US_export.policy		\
916
867515b155b5 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 300
diff changeset
   272
	    $(BOOT_JAR_JFLAGS)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
$(UNSIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar:			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
	    policy/unlimited/default_local.policy			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
	    policy/unlimited/UNLIMITED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
	$(BOOT_JAR_CMD) cmf policy/unlimited/UNLIMITED $@		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
	    -C policy/unlimited default_local.policy			\
916
867515b155b5 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 300
diff changeset
   281
	    $(BOOT_JAR_JFLAGS)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
# Build the unsigned limited policy files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
# NOTE:  We currently do not place restrictions on our limited export
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
# policy.  This was not a typo.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
limited: \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
	    $(UNSIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
	    $(UNSIGNED_POLICY_BUILDDIR)/limited/local_policy.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
$(UNSIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar:		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
	    $(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar
8583
15dea0fdc2ea 7025631: Remove the modules build support from jdk 7
mchung
parents: 7668
diff changeset
   296
	$(install-file)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
$(UNSIGNED_POLICY_BUILDDIR)/limited/local_policy.jar:			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
	    policy/limited/default_local.policy				\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
	    policy/limited/exempt_local.policy				\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
	    policy/limited/LIMITED
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
	$(BOOT_JAR_CMD) cmf policy/limited/LIMITED $@			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
	    -C policy/limited default_local.policy			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
	    -C policy/limited exempt_local.policy			\
916
867515b155b5 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 300
diff changeset
   306
	    $(BOOT_JAR_JFLAGS)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
UNSIGNED_POLICY_FILES = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    $(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    $(UNSIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    $(UNSIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    $(UNSIGNED_POLICY_BUILDDIR)/limited/local_policy.jar		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
# =====================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
# Sign the various jar files.  Not needed for OpenJDK.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   321
SIGNED_DIR		= $(JCE_BUILD_DIR)/signed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
SIGNED_POLICY_BUILDDIR	= $(SIGNED_DIR)/policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
SIGNED_POLICY_FILES = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    $(patsubst $(UNSIGNED_POLICY_BUILDDIR)/%,$(SIGNED_POLICY_BUILDDIR)/%, \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
	$(UNSIGNED_POLICY_FILES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
sign: sign-jar sign-policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
sign-jar: $(SIGNED_DIR)/jce.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
sign-policy: $(SIGNED_POLICY_FILES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   334
ifndef ALT_JCE_BUILD_DIR
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
$(SIGNED_DIR)/jce.jar: $(UNSIGNED_DIR)/jce.jar
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   336
else
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   337
#
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   338
# We have to remove the build dependency, otherwise, we'll try to rebuild it
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   339
# which we can't do on a read-only filesystem.
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   340
#
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   341
$(SIGNED_DIR)/jce.jar:
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   342
	@if [ ! -r $(UNSIGNED_DIR)/jce.jar ] ; then \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   343
	    $(ECHO) "Couldn't find $(UNSIGNED_DIR)/jce.jar"; \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   344
	    exit 1; \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   345
	fi
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   346
endif
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   347
	$(call sign-file, $(UNSIGNED_DIR)/jce.jar)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
$(SIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar:	\
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   350
	    $(UNSIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   351
	$(call sign-file, $<)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
$(SIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar:		\
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   354
	    $(UNSIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   355
	$(call sign-file, $<)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
$(SIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar:		\
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   358
	    $(UNSIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   359
	$(call sign-file, $<)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
$(SIGNED_POLICY_BUILDDIR)/limited/local_policy.jar:		\
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   362
	    $(UNSIGNED_POLICY_BUILDDIR)/limited/local_policy.jar
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   363
	$(call sign-file, $<)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
# =====================================================
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   367
# Create the Release Engineering files.  Signed builds,
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   368
# unlimited policy file distribution, etc.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
CLOSED_DIR = $(BUILDDIR)/closed/javax/crypto
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   373
release: $(SIGNED_DIR)/jce.jar sign-policy $(CLOSED_DIR)/doc/COPYRIGHT.html \
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   374
         $(CLOSED_DIR)/doc/README.txt
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
	$(RM) -r \
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   376
	    $(JCE_BUILD_DIR)/release/UnlimitedJCEPolicy              \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   377
	    $(JCE_BUILD_DIR)/release/jce.jar                         \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   378
	    $(JCE_BUILD_DIR)/release/US_export_policy.jar            \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   379
	    $(JCE_BUILD_DIR)/release/local_policy.jar                \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   380
	    $(JCE_BUILD_DIR)/release/UnlimitedJCEPolicy.zip
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   381
	$(MKDIR) -p $(JCE_BUILD_DIR)/release/UnlimitedJCEPolicy
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   382
	$(CP) $(SIGNED_DIR)/jce.jar $(JCE_BUILD_DIR)/release
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   383
	$(CP) \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   384
	    $(SIGNED_POLICY_BUILDDIR)/limited/US_export_policy.jar   \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   385
	    $(SIGNED_POLICY_BUILDDIR)/limited/local_policy.jar       \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   386
	    $(JCE_BUILD_DIR)/release
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
	$(CP) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
	    $(SIGNED_POLICY_BUILDDIR)/unlimited/US_export_policy.jar \
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   389
	    $(SIGNED_POLICY_BUILDDIR)/unlimited/local_policy.jar     \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   390
	    $(CLOSED_DIR)/doc/COPYRIGHT.html                         \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   391
	    $(CLOSED_DIR)/doc/README.txt                             \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   392
	    $(JCE_BUILD_DIR)/release/UnlimitedJCEPolicy
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   393
	cd $(JCE_BUILD_DIR)/release ; \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
	$(ZIPEXE) -qr UnlimitedJCEPolicy.zip UnlimitedJCEPolicy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
	$(release-warning)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
endif # OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
# =====================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
# Install routines.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
# Install jce.jar, depending on which type is requested.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
install-jar jar: $(JAR_DESTFILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
	$(release-warning)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
ifdef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
$(JAR_DESTFILE): $(UNSIGNED_DIR)/jce.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
$(JAR_DESTFILE): $(SIGNED_DIR)/jce.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
endif
8583
15dea0fdc2ea 7025631: Remove the modules build support from jdk 7
mchung
parents: 7668
diff changeset
   417
	$(install-file)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
# Install the appropriate policy file, depending on the type of build.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
ifdef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
INSTALL_POLICYDIR = $(UNSIGNED_POLICY_BUILDDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
INSTALL_POLICYDIR = $(SIGNED_POLICY_BUILDDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
4665
d14dc3d9e1fa 6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents: 3353
diff changeset
   428
install-limited-jars: \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
	    $(INSTALL_POLICYDIR)/limited/US_export_policy.jar	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
	    $(INSTALL_POLICYDIR)/limited/local_policy.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
	$(MKDIR) -p $(POLICY_DESTDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
	$(RM) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
	    $(POLICY_DESTDIR)/US_export_policy.jar		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
	    $(POLICY_DESTDIR)/local_policy.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
	$(CP) $^ $(POLICY_DESTDIR)
4665
d14dc3d9e1fa 6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents: 3353
diff changeset
   436
8583
15dea0fdc2ea 7025631: Remove the modules build support from jdk 7
mchung
parents: 7668
diff changeset
   437
install-limited: install-limited-jars
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
	$(release-warning)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
4665
d14dc3d9e1fa 6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents: 3353
diff changeset
   442
install-unlimited-jars: \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
	    $(INSTALL_POLICYDIR)/unlimited/US_export_policy.jar	\
4665
d14dc3d9e1fa 6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents: 3353
diff changeset
   444
	    $(INSTALL_POLICYDIR)/unlimited/local_policy.jar 
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
	$(MKDIR) -p $(POLICY_DESTDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
	$(RM) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
	    $(POLICY_DESTDIR)/US_export_policy.jar		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
	    $(POLICY_DESTDIR)/local_policy.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
	$(CP) $^ $(POLICY_DESTDIR)
4665
d14dc3d9e1fa 6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents: 3353
diff changeset
   450
8583
15dea0fdc2ea 7025631: Remove the modules build support from jdk 7
mchung
parents: 7668
diff changeset
   451
install-unlimited: install-unlimited-jars
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
	$(release-warning)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
ifndef OPENJDK
4665
d14dc3d9e1fa 6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents: 3353
diff changeset
   457
install-prebuilt-jars:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
	@$(ECHO) "\n>>>Installing prebuilt JCE framework..."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
	$(RM) $(JAR_DESTFILE) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
	    $(POLICY_DESTDIR)/US_export_policy.jar \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
	    $(POLICY_DESTDIR)/local_policy.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
	$(CP) $(PREBUILT_DIR)/jce/jce.jar $(JAR_DESTFILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
	$(CP) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
	    $(PREBUILT_DIR)/jce/US_export_policy.jar \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
	    $(PREBUILT_DIR)/jce/local_policy.jar \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
	    $(POLICY_DESTDIR)
4665
d14dc3d9e1fa 6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents: 3353
diff changeset
   467
8583
15dea0fdc2ea 7025631: Remove the modules build support from jdk 7
mchung
parents: 7668
diff changeset
   468
install-prebuilt: install-prebuilt-jars
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
# =====================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
# Support routines.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
clobber clean::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
	$(RM) -r $(JAR_DESTFILE) $(POLICY_DESTDIR)/US_export_policy.jar \
300
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   477
	    $(POLICY_DESTDIR)/local_policy.jar $(DELETE_DIRS) $(TEMPDIR) \
d4f77ff718fd 6683078: Update JCE framework and provider builds to work on read-only filesystems
wetmore
parents: 2
diff changeset
   478
	    $(JCE_BUILD_DIR)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
.PHONY: build-jar jar build-policy unlimited limited install-jar \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
	install-limited install-unlimited
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
ifndef OPENJDK
3353
ddbd63234844 6647452: Remove obfuscation, framework and provider self-verification checking
wetmore
parents: 3332
diff changeset
   483
.PHONY: sign sign-jar sign-policy release install-prebuilt
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
endif