make/copy/Copy-jdk.crypto.cryptoki.gmk
author ihse
Mon, 04 Nov 2019 11:12:13 +0100
changeset 58908 73bb9c4002cc
parent 53683 48ff68e2fe5c
permissions -rw-r--r--
8233381: Update copyright year in build system files Reviewed-by: erikj
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26489
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
     1
#
58908
73bb9c4002cc 8233381: Update copyright year in build system files
ihse
parents: 53683
diff changeset
     2
# Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved.
26489
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
     4
#
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    10
#
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    15
# accompanied this code).
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    16
#
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    20
#
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    23
# questions.
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    24
#
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    25
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    26
include CopyCommon.gmk
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    27
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    28
################################################################################
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    29
53683
48ff68e2fe5c 8218431: Improved platform checking in makefiles
ihse
parents: 47217
diff changeset
    30
ifeq ($(call isTargetOs, solaris), true)
26489
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    31
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    32
  SUNPKCS11_CFG_SRC := \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    33
      $(TOPDIR)/src/jdk.crypto.cryptoki/solaris/conf/security/sunpkcs11-solaris.cfg
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26489
diff changeset
    34
  SUNPKCS11_CFG_DST := $(CONF_DST_DIR)/security/sunpkcs11-solaris.cfg
26489
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    35
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    36
  $(SUNPKCS11_CFG_DST): $(SUNPKCS11_CFG_SRC)
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    37
	$(call install-file)
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    38
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    39
  SECURITY_PKCS11_CONF_FILES += $(SUNPKCS11_CFG_DST)
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    40
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26489
diff changeset
    41
  TARGETS := $(SUNPKCS11_CFG_DST)
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26489
diff changeset
    42
26489
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    43
endif
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    44
cc168c423644 8039898: sunpkcs11-solaris.cfg should be in solaris specific directory
valeriep
parents:
diff changeset
    45
################################################################################