make/Bundles.gmk
author duke
Wed, 05 Jul 2017 21:50:08 +0200
changeset 38921 d53037a90c44
parent 37982 cd251f56161f
child 38924 55921b080a8e
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
     1
#
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
     2
# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
     4
#
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    10
#
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    15
# accompanied this code).
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    16
#
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    20
#
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    23
# questions.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    24
#
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    25
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    26
default: all
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    27
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    28
include $(SPEC)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    29
include MakeBase.gmk
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    30
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    31
PRODUCT_TARGETS :=
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    32
TEST_TARGETS :=
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    33
DOCS_TARGETS :=
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    34
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    35
# On Windows tar frequently complains that "file changed as we read it" for
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    36
# some random source files. This seems to be cause by anti virus scanners and
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    37
# is most likely safe to ignore. When it happens, tar returns '1'.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    38
ifeq ($(OPENJDK_BUILD_OS), windows)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    39
  TAR_IGNORE_EXIT_VALUE := || test "$$$$?" = "1"
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    40
endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    41
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    42
# Hook to include the corresponding custom file, if present.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    43
$(eval $(call IncludeCustomExtension, , Bundles-pre.gmk))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    44
################################################################################
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    45
# BUNDLE : Name of bundle to create
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    46
# FILES : Files in BASE_DIR to add to bundle
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    47
# SPECIAL_INCLUDES : List of directories inside BASE_DIR to look for additional
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    48
#     files in. These files will not get proper dependency handling. Use when
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    49
#     files or directories may contain spaces.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    50
# BASE_DIR : Base directory for the root dir in the bundle.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    51
# SUBDIR : Optional name of root dir in bundle.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    52
SetupBundleFile = $(NamedParamsMacroTemplate)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    53
define SetupBundleFileBody
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    54
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    55
  $1_RELATIVE_FILES := $$(patsubst $$($1_BASE_DIR)/%, ./%, $$($1_FILES))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    56
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    57
  ifneq ($$(filter %.tar.gz, $$($1_BUNDLE_NAME)), )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    58
    $1_TYPE := tar.gz
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    59
  else ifneq ($$(filter %.zip, $$($1_BUNDLE_NAME)), )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    60
    $1_TYPE := zip
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    61
  else
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    62
    $$(error Unknown bundle type $$($1_BUNDLE_NAME))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    63
  endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    64
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    65
  $$(call SetIfEmpty, $1_UNZIP_DEBUGINFO, false)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    66
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    67
  $(BUNDLES_OUTPUTDIR)/$$($1_BUNDLE_NAME): $$($1_FILES)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    68
	$$(eval $$(call ListPathsSafely, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    69
	    $1_RELATIVE_FILES, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    70
	    $(SUPPORT_OUTPUTDIR)/bundles/_$1_files))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    71
	$$(call MakeDir, $$(@D))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    72
        ifneq ($$($1_SPECIAL_INCLUDES), )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    73
	  $$(foreach i, $$($1_SPECIAL_INCLUDES), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    74
	      ($(CD) $$($1_BASE_DIR) && $(FIND) ./$$i \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    75
	          >> $(SUPPORT_OUTPUTDIR)/bundles/_$1_files ) ; )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    76
        endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    77
        ifneq ($$($1_SUBDIR), )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    78
          ifeq ($$($1_TYPE)-$(TAR_SUPPORTS_TRANSFORM)-$$($1_UNZIP_DEBUGINFO), tar.gz-true-false)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    79
	    $(CD) $$($1_BASE_DIR) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    80
	        && ( $(TAR) cf - -$(TAR_INCLUDE_PARAM) $(SUPPORT_OUTPUTDIR)/bundles/_$1_files \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    81
	            --transform 's|^|$$($1_SUBDIR)/|' $(TAR_IGNORE_EXIT_VALUE) ) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    82
	        | $(GZIP) > $$@
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    83
          else
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    84
            # If a subdir has been specified, copy all files into a temporary
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    85
            # location with this subdir before creating the tar file
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    86
	    $(RM) -r $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    87
	    $(MKDIR) -p $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    88
	    ( $(CD) $$($1_BASE_DIR) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    89
	        && $(TAR) cf - -$(TAR_INCLUDE_PARAM) $(SUPPORT_OUTPUTDIR)/bundles/_$1_files \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    90
	            $(TAR_IGNORE_EXIT_VALUE) ) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    91
	        | ( $(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR) && $(TAR) xf - )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    92
            # Unzip any zipped debuginfo files
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    93
            ifeq ($$($1_UNZIP_DEBUGINFO), true)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    94
	      for f in `$(FIND) $(SUPPORT_OUTPUTDIR)/bundles/$1/$$($1_SUBDIR) -name "*.diz"`; do \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    95
	        $(CD) $$$${f%/*} && $(UNZIP) -q $$$${f} && $(RM) $$$${f}; \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    96
	      done
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    97
            endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    98
            ifeq ($$($1_TYPE), tar.gz)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
    99
	      $(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1 && \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   100
	          ( $(TAR) cf - $$($1_SUBDIR) $(TAR_IGNORE_EXIT_VALUE) ) | $(GZIP) > $$@
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   101
            else ifeq ($$($1_TYPE), zip)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   102
	      $(CD) $(SUPPORT_OUTPUTDIR)/bundles/$1 && $(ZIP) -qr $$@ .
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   103
            endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   104
          endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   105
        else
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   106
          ifeq ($$($1_TYPE), tar.gz)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   107
	    $(CD) $$($1_BASE_DIR) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   108
	        && ( $(TAR) cf - -$(TAR_INCLUDE_PARAM) $(SUPPORT_OUTPUTDIR)/bundles/_$1_files \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   109
	            $(TAR_IGNORE_EXIT_VALUE) ) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   110
	        | $(GZIP) > $$@
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   111
          else ifeq ($$($1_TYPE), zip)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   112
	    $(CD) $$($1_BASE_DIR) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   113
	        && $(ZIP) -qr $$@ . -i@$(SUPPORT_OUTPUTDIR)/bundles/_$1_files
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   114
          endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   115
        endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   116
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   117
  $1 += $(BUNDLES_OUTPUTDIR)/$$($1_BUNDLE_NAME)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   118
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   119
endef
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   120
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   121
################################################################################
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   122
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   123
# On Macosx, we bundle up the macosx specific images which already have the
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   124
# correct base directories.
37982
cd251f56161f 8157574: Mac fastdebug bundles have wrong directory layout
erikj
parents: 37972
diff changeset
   125
ifeq ($(OPENJDK_TARGET_OS)-$(DEBUG_LEVEL), macosx-release)
37972
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   126
  JDK_IMAGE_DIR := $(JDK_MACOSX_BUNDLE_DIR)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   127
  JRE_IMAGE_DIR := $(JRE_MACOSX_BUNDLE_DIR)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   128
  JDK_IMAGE_HOMEDIR := $(JDK_MACOSX_CONTENTS_DIR)/Home
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   129
  JRE_IMAGE_HOMEDIR := $(JRE_MACOSX_CONTENTS_DIR)/Home
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   130
  JDK_BUNDLE_SUBDIR :=
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   131
  JRE_BUNDLE_SUBDIR :=
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   132
else
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   133
  JDK_IMAGE_HOMEDIR := $(JDK_IMAGE_DIR)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   134
  JRE_IMAGE_HOMEDIR := $(JRE_IMAGE_DIR)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   135
  JDK_BUNDLE_SUBDIR := jdk-$(VERSION_NUMBER)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   136
  JRE_BUNDLE_SUBDIR := jre-$(VERSION_NUMBER)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   137
  ifneq ($(DEBUG_LEVEL), release)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   138
    JDK_BUNDLE_SUBDIR := $(JDK_BUNDLE_SUBDIR)/$(DEBUG_LEVEL)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   139
    JRE_BUNDLE_SUBDIR := $(JRE_BUNDLE_SUBDIR)/$(DEBUG_LEVEL)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   140
  endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   141
endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   142
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   143
################################################################################
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   144
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   145
ifneq ($(filter product-bundles, $(MAKECMDGOALS)), )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   146
  $(eval $(call FillCacheFind, $(IMAGES_OUTPUTDIR)))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   147
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   148
  SYMBOLS_EXCLUDE_PATTERN := %.debuginfo %.diz %.pdb %.map
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   149
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   150
  ALL_JDK_FILES := $(call CacheFind, $(JDK_IMAGE_DIR))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   151
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   152
  # Create special filter rules when dealing with unzipped .dSYM directories on
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   153
  # macosx
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   154
  ifeq ($(OPENJDK_TARGET_OS), macosx)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   155
    ifeq ($(ZIP_DEBUGINFO_FILES), false)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   156
      JDK_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   157
          $(call containing, .dSYM/, $(patsubst $(JDK_IMAGE_DIR)/%, %, $(ALL_JDK_FILES))))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   158
    endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   159
  endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   160
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   161
  JDK_BUNDLE_FILES := \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   162
      $(filter-out \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   163
          $(JDK_SYMBOLS_EXCLUDE_PATTERN) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   164
          $(JDK_EXTRA_EXCLUDES) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   165
          $(SYMBOLS_EXCLUDE_PATTERN) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   166
          $(JDK_IMAGE_HOMEDIR)/demo/% $(JDK_IMAGE_HOMEDIR)/sample/% \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   167
          , \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   168
          $(ALL_JDK_FILES) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   169
      )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   170
  DEMOS_BUNDLE_FILES := \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   171
      $(filter-out \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   172
          $(JDK_SYMBOLS_EXCLUDE_PATTERN) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   173
          $(SYMBOLS_EXCLUDE_PATTERN) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   174
          , \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   175
          $(filter \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   176
               $(JDK_IMAGE_HOMEDIR)/demo/% $(JDK_IMAGE_HOMEDIR)/sample/% \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   177
               $(JDK_IMAGE_HOMEDIR)/release \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   178
               , \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   179
               $(ALL_JDK_FILES) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   180
          ) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   181
      )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   182
  JDK_SYMBOLS_BUNDLE_FILES := \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   183
      $(filter \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   184
          $(JDK_SYMBOLS_EXCLUDE_PATTERN) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   185
          $(SYMBOLS_EXCLUDE_PATTERN) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   186
          , \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   187
          $(ALL_JDK_FILES) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   188
      ) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   189
      $(call CacheFind, $(SYMBOLS_IMAGE_DIR))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   190
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   191
  ALL_JRE_FILES := $(call CacheFind, $(JRE_IMAGE_DIR))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   192
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   193
  # Create special filter rules when dealing with unzipped .dSYM directories on
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   194
  # macosx
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   195
  ifeq ($(OPENJDK_TARGET_OS), macosx)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   196
    ifeq ($(ZIP_DEBUGINFO_FILES), false)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   197
      JRE_SYMBOLS_EXCLUDE_PATTERN := $(addprefix %, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   198
          $(call containing, .dSYM/, $(patsubst $(JRE_IMAGE_DIR)/%, %, $(ALL_JRE_FILES))))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   199
    endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   200
  endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   201
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   202
  JRE_BUNDLE_FILES := $(filter-out \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   203
      $(JRE_SYMBOLS_EXCLUDE_PATTERN) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   204
      $(SYMBOLS_EXCLUDE_PATTERN), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   205
      $(ALL_JRE_FILES))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   206
  JRE_SYMBOLS_BUNDLE_FILES := $(filter \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   207
      $(JRE_SYMBOLS_EXCLUDE_PATTERN) \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   208
      $(SYMBOLS_EXCLUDE_PATTERN), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   209
      $(ALL_JRE_FILES))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   210
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   211
  $(eval $(call SetupBundleFile, BUILD_JDK_BUNDLE, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   212
      BUNDLE_NAME := $(JDK_BUNDLE_NAME), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   213
      FILES := $(JDK_BUNDLE_FILES), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   214
      SPECIAL_INCLUDES := $(JDK_SPECIAL_INCLUDES), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   215
      BASE_DIR := $(JDK_IMAGE_DIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   216
      SUBDIR := $(JDK_BUNDLE_SUBDIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   217
  ))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   218
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   219
  PRODUCT_TARGETS += $(BUILD_JDK_BUNDLE)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   220
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   221
  $(eval $(call SetupBundleFile, BUILD_JRE_BUNDLE, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   222
      BUNDLE_NAME := $(JRE_BUNDLE_NAME), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   223
      FILES := $(JRE_BUNDLE_FILES), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   224
      BASE_DIR := $(JRE_IMAGE_DIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   225
      SUBDIR := $(JRE_BUNDLE_SUBDIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   226
  ))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   227
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   228
  PRODUCT_TARGETS += $(BUILD_JRE_BUNDLE)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   229
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   230
  $(eval $(call SetupBundleFile, BUILD_JDK_SYMBOLS_BUNDLE, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   231
      BUNDLE_NAME := $(JDK_SYMBOLS_BUNDLE_NAME), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   232
      FILES := $(JDK_SYMBOLS_BUNDLE_FILES), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   233
      BASE_DIR := $(JDK_IMAGE_DIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   234
      SUBDIR := $(JDK_BUNDLE_SUBDIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   235
      UNZIP_DEBUGINFO := true, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   236
  ))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   237
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   238
  PRODUCT_TARGETS += $(BUILD_JDK_SYMBOLS_BUNDLE)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   239
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   240
  $(eval $(call SetupBundleFile, BUILD_JRE_SYMBOLS_BUNDLE, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   241
      BUNDLE_NAME := $(JRE_SYMBOLS_BUNDLE_NAME), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   242
      FILES := $(JRE_SYMBOLS_BUNDLE_FILES), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   243
      BASE_DIR := $(JRE_IMAGE_DIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   244
      SUBDIR := $(JRE_BUNDLE_SUBDIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   245
      UNZIP_DEBUGINFO := true, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   246
  ))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   247
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   248
  PRODUCT_TARGETS += $(BUILD_JRE_SYMBOLS_BUNDLE)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   249
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   250
  $(eval $(call SetupBundleFile, BUILD_DEMOS_BUNDLE, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   251
      BUNDLE_NAME := $(DEMOS_BUNDLE_NAME), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   252
      FILES := $(call DoubleDollar, $(DEMOS_BUNDLE_FILES)), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   253
      BASE_DIR := $(JDK_IMAGE_DIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   254
      SUBDIR := $(JDK_BUNDLE_SUBDIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   255
  ))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   256
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   257
  PRODUCT_TARGETS += $(BUILD_DEMOS_BUNDLE)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   258
endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   259
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   260
################################################################################
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   261
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   262
ifneq ($(filter test-bundles, $(MAKECMDGOALS)), )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   263
  TEST_BUNDLE_FILES := $(call CacheFind, $(TEST_IMAGE_DIR))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   264
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   265
  $(eval $(call SetupBundleFile, BUILD_TEST_BUNDLE, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   266
      BUNDLE_NAME := $(TEST_BUNDLE_NAME), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   267
      FILES := $(call DoubleDollar, $(TEST_BUNDLE_FILES)), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   268
      BASE_DIR := $(TEST_IMAGE_DIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   269
  ))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   270
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   271
  TEST_TARGETS += $(BUILD_TEST_BUNDLE)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   272
endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   273
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   274
################################################################################
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   275
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   276
ifneq ($(filter docs-bundles, $(MAKECMDGOALS)), )
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   277
  DOCS_BUNDLE_FILES := $(call CacheFind, $(DOCS_IMAGE_DIR))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   278
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   279
  $(eval $(call SetupBundleFile, BUILD_DOCS_BUNDLE, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   280
      BUNDLE_NAME := $(DOCS_BUNDLE_NAME), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   281
      FILES := $(DOCS_BUNDLE_FILES), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   282
      BASE_DIR := $(DOCS_IMAGE_DIR), \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   283
      SUBDIR := docs, \
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   284
  ))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   285
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   286
  DOCS_TARGETS += $(BUILD_DOCS_BUNDLE)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   287
endif
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   288
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   289
################################################################################
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   290
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   291
# Hook to include the corresponding custom file, if present.
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   292
$(eval $(call IncludeCustomExtension, , Bundles.gmk))
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   293
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   294
################################################################################
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   295
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   296
product-bundles: $(PRODUCT_TARGETS)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   297
test-bundles: $(TEST_TARGETS)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   298
docs-bundles: $(DOCS_TARGETS)
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   299
e1fa5c2e62a0 8136777: Introduce bundle targets
erikj
parents:
diff changeset
   300
.PHONY: all default product-bundles test-bundles docs-bundles