jdk/make/Images.gmk
author erikj
Fri, 10 Jan 2014 10:25:54 +0100
changeset 23601 d15e005afb07
parent 23600 d21826f6c789
child 23602 ff671719d44a
permissions -rw-r--r--
8031300: No jdeps.1 and jjs.1 man pages in jdk8 b122 build and jvisualvm.1 and jcmd.1 missing on macosx 8030946: No jmc.1 for man page of JMC Reviewed-by: ihse, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
22963
a28e6f0b511b 8034191: Move relevant parts of build system to new closed repo
ihse
parents: 22342
diff changeset
     2
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     4
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    10
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    15
# accompanied this code).
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    16
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    20
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    23
# questions.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    24
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    25
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    26
include $(SPEC)
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    27
include MakeBase.gmk
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    28
include JavaCompilation.gmk
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    29
include Setup.gmk
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    30
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    31
default: images
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    32
23347
acb1d044a217 8037281: Improve CacheFind and enable on all platforms
erikj
parents: 22963
diff changeset
    33
# Prepare the find cache.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    34
$(eval $(call FillCacheFind, \
15126
bceb690ccf35 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14596
diff changeset
    35
    $(wildcard $(JDK_OUTPUTDIR)/bin \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    36
        $(JDK_OUTPUTDIR)/lib \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    37
        $(IMAGES_OUTPUTDIR)/lib \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    38
        $(JDK_OUTPUTDIR)/include \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    39
        $(JDK_OUTPUTDIR)/sample \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    40
        $(JDK_OUTPUTDIR)/demo)))
15126
bceb690ccf35 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14596
diff changeset
    41
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    42
include Tools.gmk
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    43
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents: 15140
diff changeset
    44
include Profiles.gmk
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents: 15140
diff changeset
    45
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    46
# Note: This double-colon rule is intentional, to support
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    47
# custom make file integration.
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    48
images:: jre-image jdk-image
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    49
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    50
overlay-images: jre-overlay-image jdk-overlay-image
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    51
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    52
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    53
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    54
# Processing license files from source area to image area
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    55
# These will be modified to have the platform specific EOL chars.
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    56
define process-doc-file
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    57
	$(ECHO) $(LOG_INFO) Processing $(patsubst $(OUTPUT_ROOT)/%,%,$@)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    58
	$(MKDIR) -p $(@D)
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    59
	$(RM) $@
15823
9882cddb33b9 8007387: "sed: RE error: illegal byte sequence" when building images on Mac
erikj
parents: 15693
diff changeset
    60
	LC_ALL=C $(SED) 's/$$//g' $< > $@
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    61
	$(CHMOD) 444 $@
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    62
endef
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    63
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    64
define AddFileToCopy
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    65
  # Param 1 - src root dir
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    66
  # Param 2 - dest root dir
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    67
  # Param 3 - src file
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    68
  # Param 4 - variable to add targets to
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    69
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    70
  # Remove src dir root from src file
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    71
  $2_$3_FILE := $$(patsubst $1/%,%,$3)
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    72
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    73
  $2/$$($2_$3_FILE): $3
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    74
	$(ECHO) $(LOG_INFO) Copying $$(patsubst $(OUTPUT_ROOT)/%,%,$$@)
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    75
	$$(install-file)
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    76
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    77
  $4 += $2/$$($2_$3_FILE)
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
    78
endef
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    79
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    80
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    81
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    82
# JRE and JDK build rules
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    83
#
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    84
################################################################################
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    85
#
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    86
# Variable prefixes explained:
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents: 15140
diff changeset
    87
# JRE_ refers to files in the j2re-*-image.
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    88
# JDK_ refers to files in the j2sdk-image outside of the jre subdir.
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    89
# JDKJRE_ refers to files in the j2sdk-image inside the jre subdir.
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
    90
#
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    91
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    92
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    93
# /bin dir
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    94
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    95
ifeq ($(PROFILE), )
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    96
  NOT_JRE_BIN_FILES := \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    97
      appletviewer$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    98
      extcheck$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
    99
      idlj$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   100
      jar$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   101
      jarsigner$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   102
      java-rmi.cgi \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   103
      javac$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   104
      javadoc$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   105
      javah$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   106
      javap$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   107
      jdeps$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   108
      jcmd$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   109
      jdb$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   110
      jps$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   111
      jrunscript$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   112
      jstat$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   113
      jstatd$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   114
      jstack$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   115
      packagebean$(SCRIPT_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   116
      rmic$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   117
      serialver$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   118
      unregbean$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   119
      jconsole$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   120
      jinfo$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   121
      jmap$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   122
      native2ascii$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   123
      xjc$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   124
      wsgen$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   125
      wsimport$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   126
      schemagen$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   127
      jsadebugd$(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   128
      jhat$(EXE_SUFFIX)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents: 15140
diff changeset
   129
endif
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   130
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   131
WINDOWS_JDK_BIN_FILES = \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   132
    $(EXE_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   133
    $(LIBRARY_PREFIX)jli$(SHARED_LIBRARY_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   134
    $(notdir $(MSVCR_DLL))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   135
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   136
WINDOWS_JDKJRE_BIN_FILES := \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   137
    $(LIBRARY_PREFIX)attach$(SHARED_LIBRARY_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   138
    $(SALIB_NAME)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   139
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   140
# Find all files in bin dir
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   141
ALL_BIN_LIST := $(call CacheFind, $(JDK_OUTPUTDIR)/bin)
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   142
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   143
# Prevent sjavac from entering the images.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   144
ALL_BIN_LIST := $(filter-out %/sjavac, $(ALL_BIN_LIST))
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   145
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   146
# For unknown reason the debuginfo files for executables are not put into images
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   147
# e.g filter them out
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   148
ifneq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   149
  ALL_BIN_LIST := $(filter-out %.debuginfo %.diz, $(ALL_BIN_LIST))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   150
else
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   151
  # On windows, the libraries are in the bin dir, only filter out debuginfo files
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   152
  # for executables. "java" is both a library and executable.
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   153
  ALL_BIN_EXEC_FILES := $(filter-out java.exe, $(notdir $(filter %.exe, $(ALL_BIN_LIST))))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   154
  ALL_BIN_DEBUG_FILTER := $(addprefix %, $(patsubst %.exe, %.debuginfo, $(ALL_BIN_EXEC_FILES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   155
      $(patsubst %.exe, %.diz, $(ALL_BIN_EXEC_FILES))) %.pdb
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   156
  ALL_BIN_LIST := $(filter-out $(ALL_BIN_DEBUG_FILTER), $(ALL_BIN_LIST))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   157
endif
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   158
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   159
JDKJRE_BIN_LIST := $(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES)), $(ALL_BIN_LIST))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   160
JRE_BIN_LIST := $(filter-out $(addprefix %, $(WINDOWS_JDKJRE_BIN_FILES)), $(JDKJRE_BIN_LIST))
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   161
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   162
ifeq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   163
  JDK_BIN_LIST := $(filter $(addprefix %, $(WINDOWS_JDK_BIN_FILES)), $(ALL_BIN_LIST))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   164
  # On windows x86, the server jvm is filtered out from the j2re image. This could possibly
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   165
  # be handled by profiles in the future. If no client jvm is built, leave server in.
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   166
  ifeq ($(OPENJDK_TARGET_CPU), x86)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   167
    ifeq ($(JVM_VARIANT_CLIENT), true)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   168
      JRE_BIN_LIST := $(filter-out $(JDK_OUTPUTDIR)/bin/server/%, $(JRE_BIN_LIST))
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   169
    endif
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   170
  endif
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   171
else
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   172
  JDK_BIN_LIST := $(ALL_BIN_LIST)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   173
endif
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   174
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   175
ifneq ($(OPENJDK_TARGET_CPU_ISADIR), )
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   176
  OVERLAY_FILTER := $(JDK_OUTPUTDIR)/bin$(OPENJDK_TARGET_CPU_ISADIR)%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   177
endif
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   178
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   179
$(foreach f,$(filter-out $(OVERLAY_FILTER),$(JRE_BIN_LIST)), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   180
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JRE_IMAGE_DIR),$f,JRE_BIN_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   181
$(foreach f,$(filter-out $(OVERLAY_FILTER),$(JDK_BIN_LIST)), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   182
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_BIN_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   183
$(foreach f,$(filter-out $(OVERLAY_FILTER),$(JDKJRE_BIN_LIST)), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   184
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR)/jre,$f,JDKJRE_BIN_TARGETS)))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   185
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   186
$(foreach f,$(filter $(OVERLAY_FILTER),$(JRE_BIN_LIST)), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   187
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JRE_OVERLAY_IMAGE_DIR),$f,JRE_BIN_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   188
$(foreach f,$(filter $(OVERLAY_FILTER),$(JDK_BIN_LIST)), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   189
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR),$f,JDK_BIN_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   190
$(foreach f,$(filter $(OVERLAY_FILTER),$(JDKJRE_BIN_LIST)), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   191
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR)/jre,$f,JDKJRE_BIN_TARGETS)))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   192
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   193
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   194
# /lib dir
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   195
ifneq ($(OPENJDK_TARGET_OS), macosx)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   196
  JDKJRE_LIB_FILES := \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   197
      $(LIBRARY_PREFIX)attach$(SHARED_LIBRARY_SUFFIX) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   198
      $(SALIB_NAME)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   199
endif
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   200
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   201
ifeq ($(PROFILE), )
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   202
  NOT_JRE_LIB_FILES := \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   203
      tools.jar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   204
      jconsole.jar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   205
      sa-jdi.jar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   206
      dt.jar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   207
      orb.idl \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   208
      ir.idl \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   209
      ct.sym
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   210
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   211
  ifeq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   212
    NOT_JRE_LIB_FILES += jawt.lib jvm.lib
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   213
  endif
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   214
endif
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   215
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   216
JDK_LIB_FILES := $(NOT_JRE_LIB_FILES)
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   217
ifeq ($(OPENJDK_TARGET_OS), linux)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   218
  JDK_LIB_FILES += jexec
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   219
endif
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   220
20812
16a6de786164 8012146: Improve tool support
erikj
parents: 17736
diff changeset
   221
ifneq ($(findstring $(OPENJDK_TARGET_OS), linux solaris),) # If Linux or Solaris
16a6de786164 8012146: Improve tool support
erikj
parents: 17736
diff changeset
   222
    JDK_LIB_FILES += $(LIBRARY_PREFIX)jli$(SHARED_LIBRARY_SUFFIX) \
16a6de786164 8012146: Improve tool support
erikj
parents: 17736
diff changeset
   223
		     $(LIBRARY_PREFIX)jawt$(SHARED_LIBRARY_SUFFIX)
16a6de786164 8012146: Improve tool support
erikj
parents: 17736
diff changeset
   224
endif
16a6de786164 8012146: Improve tool support
erikj
parents: 17736
diff changeset
   225
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   226
# Find all files to copy from $(JDK_OUTPUTDIR)/lib
14596
a1f29d55b5ee 8004281: build-infra: Move all jar creation to images target and put jars in images/lib
erikj
parents: 14231
diff changeset
   227
# Jar files are not expected to be here
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   228
ALL_JDKOUT_LIB_LIST := $(call not-containing,_the., $(filter-out %.jar, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   229
    $(call CacheFind, $(JDK_OUTPUTDIR)/lib)))
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   230
# Find all files to copy from $(IMAGES_OUTPUTDIR)/lib
14596
a1f29d55b5ee 8004281: build-infra: Move all jar creation to images target and put jars in images/lib
erikj
parents: 14231
diff changeset
   231
# This is were the jar files are and might not exist if building overlay-images
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   232
ifneq ($(wildcard $(IMAGES_OUTPUTDIR)/lib), )
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   233
  ALL_IMAGES_LIB_LIST := $(call not-containing,_the., \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   234
      $(call CacheFind, $(IMAGES_OUTPUTDIR)/lib))
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   235
endif
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   236
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   237
# Filter files to copy for each destination
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   238
JRE_JDKOUT_LIB_LIST := $(filter-out $(addprefix %, $(NOT_JRE_LIB_FILES) $(JDKJRE_LIB_FILES)), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   239
    $(ALL_JDKOUT_LIB_LIST))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   240
JDKJRE_JDKOUT_LIB_LIST := $(filter-out $(addprefix %, $(NOT_JRE_LIB_FILES)), $(ALL_JDKOUT_LIB_LIST))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   241
JDK_JDKOUT_LIB_LIST := $(filter $(addprefix %, $(JDK_LIB_FILES)), $(ALL_JDKOUT_LIB_LIST))
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   242
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   243
JRE_IMAGES_LIB_LIST := $(filter-out $(addprefix %, $(NOT_JRE_LIB_FILES) $(JDKJRE_LIB_FILES)), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   244
    $(ALL_IMAGES_LIB_LIST))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   245
JDKJRE_IMAGES_LIB_LIST := $(filter-out $(addprefix %, $(NOT_JRE_LIB_FILES)), $(ALL_IMAGES_LIB_LIST))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   246
JDK_IMAGES_LIB_LIST := $(filter $(addprefix %, $(JDK_LIB_FILES)), $(ALL_IMAGES_LIB_LIST))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   247
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   248
# Iterate over files to copy to create rules for each one
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   249
$(foreach f,$(JRE_JDKOUT_LIB_LIST), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   250
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JRE_IMAGE_DIR),$f,JRE_LIB_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   251
$(foreach f,$(JDK_JDKOUT_LIB_LIST), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   252
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_LIB_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   253
$(foreach f,$(JDKJRE_JDKOUT_LIB_LIST), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   254
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR)/jre,$f,JDKJRE_LIB_TARGETS)))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   255
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   256
$(foreach f,$(JRE_IMAGES_LIB_LIST), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   257
    $(eval $(call AddFileToCopy,$(IMAGES_OUTPUTDIR),$(JRE_IMAGE_DIR),$f,JRE_LIB_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   258
$(foreach f,$(JDK_IMAGES_LIB_LIST), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   259
    $(eval $(call AddFileToCopy,$(IMAGES_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_LIB_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   260
$(foreach f,$(JDKJRE_IMAGES_LIB_LIST), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   261
    $(eval $(call AddFileToCopy,$(IMAGES_OUTPUTDIR),$(JDK_IMAGE_DIR)/jre,$f,JDKJRE_LIB_TARGETS)))
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   262
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   263
$(foreach f,$(filter $(JDK_OUTPUTDIR)/lib$(OPENJDK_TARGET_CPU_ISADIR)/%,$(JRE_JDKOUT_LIB_LIST)), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   264
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JRE_OVERLAY_IMAGE_DIR),$f,JRE_OVERLAY_LIB_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   265
$(foreach f,$(filter $(JDK_OUTPUTDIR)/lib$(OPENJDK_TARGET_CPU_ISADIR)/%,$(JDK_JDKOUT_LIB_LIST)), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   266
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR),$f,JDK_OVERLAY_LIB_TARGETS)))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   267
$(foreach f,$(filter $(JDK_OUTPUTDIR)/lib$(OPENJDK_TARGET_CPU_ISADIR)/%,$(JDKJRE_JDKOUT_LIB_LIST)), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   268
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR)/jre,$f,JDKJRE_OVERLAY_LIB_TARGETS)))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   269
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   270
ifneq ($(PROFILE), )
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   271
  # Files in lib$(PROFILE) are excluded from the generic copying routines so
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   272
  # we have to add them back in here
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   273
  $(foreach f,$(CUSTOM_PROFILE_JARS), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   274
      $(eval $(call AddFileToCopy,$(IMAGES_OUTPUTDIR)/lib$(PROFILE),$(JRE_IMAGE_DIR)/lib,$f,JRE_LIB_TARGETS)))
15885
1729959f3994 8009695: embedded/GP/RI: This intermittent error happens too often, makes the build unstable, and waste machine
erikj
parents: 15823
diff changeset
   275
endif
1729959f3994 8009695: embedded/GP/RI: This intermittent error happens too often, makes the build unstable, and waste machine
erikj
parents: 15823
diff changeset
   276
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   277
# CTE plugin security change require new empty directory lib/applet
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   278
$(JRE_IMAGE_DIR)/lib/applet:
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   279
	$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   280
	$(MKDIR) -p $@
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   281
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   282
$(JDK_IMAGE_DIR)/jre/lib/applet:
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   283
	$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   284
	$(MKDIR) -p $@
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   285
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   286
$(JRE_IMAGE_DIR)/lib/meta-index: $(JRE_LIB_TARGETS)
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   287
	$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
22307
8860c4df071b 8021266: Better life cycle for objects
coleenp
parents: 20812
diff changeset
   288
	$(CD) $(@D) && $(TOOL_BUILDMETAINDEX) -o meta-index *.jar
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   289
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   290
$(JDK_IMAGE_DIR)/jre/lib/meta-index: $(JDKJRE_LIB_TARGETS)
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   291
	$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
22307
8860c4df071b 8021266: Better life cycle for objects
coleenp
parents: 20812
diff changeset
   292
	$(CD) $(@D) && $(TOOL_BUILDMETAINDEX) -o meta-index *.jar
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   293
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   294
$(JRE_IMAGE_DIR)/lib/ext/meta-index: $(JRE_LIB_TARGETS)
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   295
	$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   296
	$(CD) $(@D) && $(TOOL_BUILDMETAINDEX) -o meta-index *.jar
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   297
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   298
$(JDK_IMAGE_DIR)/jre/lib/ext/meta-index: $(JDKJRE_LIB_TARGETS)
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   299
	$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   300
	$(CD) $(@D) && $(TOOL_BUILDMETAINDEX) -o meta-index *.jar
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   301
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   302
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   303
# /man dir
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   304
# Avoid evaluating this whole section on windows for speed and stability
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   305
ifneq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   306
  JRE_MAN_PAGES := \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   307
      java.1 \
23601
d15e005afb07 8031300: No jdeps.1 and jjs.1 man pages in jdk8 b122 build and jvisualvm.1 and jcmd.1 missing on macosx
erikj
parents: 23600
diff changeset
   308
      jjs.1 \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   309
      keytool.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   310
      orbd.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   311
      pack200.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   312
      policytool.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   313
      rmid.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   314
      rmiregistry.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   315
      servertool.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   316
      tnameserv.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   317
      unpack200.1
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   318
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   319
  ifndef OPENJDK
20550
f9e9b021bee7 8026500: [infra] remove extraneous docs in solaris images
ksrini
parents: 20547
diff changeset
   320
    ifneq ($(OPENJDK_TARGET_OS), solaris)
f9e9b021bee7 8026500: [infra] remove extraneous docs in solaris images
ksrini
parents: 20547
diff changeset
   321
      JRE_MAN_PAGES += javaws.1
f9e9b021bee7 8026500: [infra] remove extraneous docs in solaris images
ksrini
parents: 20547
diff changeset
   322
    endif
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   323
  endif
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   324
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   325
  JDK_MAN_PAGES = \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   326
      $(JRE_MAN_PAGES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   327
      appletviewer.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   328
      extcheck.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   329
      idlj.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   330
      jar.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   331
      jarsigner.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   332
      javac.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   333
      javadoc.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   334
      javah.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   335
      javap.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   336
      jconsole.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   337
      jcmd.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   338
      jdb.1 \
23601
d15e005afb07 8031300: No jdeps.1 and jjs.1 man pages in jdk8 b122 build and jvisualvm.1 and jcmd.1 missing on macosx
erikj
parents: 23600
diff changeset
   339
      jdeps.1 \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   340
      jhat.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   341
      jinfo.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   342
      jmap.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   343
      jps.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   344
      jrunscript.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   345
      jsadebugd.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   346
      jstack.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   347
      jstat.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   348
      jstatd.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   349
      native2ascii.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   350
      rmic.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   351
      schemagen.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   352
      serialver.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   353
      wsgen.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   354
      wsimport.1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   355
      xjc.1
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   356
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   357
  ifndef OPENJDK
23601
d15e005afb07 8031300: No jdeps.1 and jjs.1 man pages in jdk8 b122 build and jvisualvm.1 and jcmd.1 missing on macosx
erikj
parents: 23600
diff changeset
   358
    JDK_MAN_PAGES += \
d15e005afb07 8031300: No jdeps.1 and jjs.1 man pages in jdk8 b122 build and jvisualvm.1 and jcmd.1 missing on macosx
erikj
parents: 23600
diff changeset
   359
        jvisualvm.1 \
d15e005afb07 8031300: No jdeps.1 and jjs.1 man pages in jdk8 b122 build and jvisualvm.1 and jcmd.1 missing on macosx
erikj
parents: 23600
diff changeset
   360
        jmc.1 \
d15e005afb07 8031300: No jdeps.1 and jjs.1 man pages in jdk8 b122 build and jvisualvm.1 and jcmd.1 missing on macosx
erikj
parents: 23600
diff changeset
   361
        #
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   362
  endif
13497
2c09fb7cdf7f 7192804: Build should not install jvisualvm man page for OpenJDK
andrew
parents: 13164
diff changeset
   363
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   364
  # This variable is potentially overridden in the closed makefile.
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   365
  MAN_SRC_BASEDIR ?= $(JDK_TOPDIR)/src
17049
a7caf0d4cb98 8013552: Add build support for different man pages for OpenJDK and OracleJDK
erikj
parents: 16511
diff changeset
   366
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   367
  ifeq ($(OPENJDK_TARGET_OS), linux)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   368
    MAN_SRC_DIR := $(MAN_SRC_BASEDIR)/linux/doc
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   369
    MAN1_SUBDIR := man
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   370
  endif
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   371
  ifeq ($(OPENJDK_TARGET_OS), solaris)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   372
    MAN_SRC_DIR := $(MAN_SRC_BASEDIR)/solaris/doc
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   373
    MAN1_SUBDIR := sun/man/man1
23601
d15e005afb07 8031300: No jdeps.1 and jjs.1 man pages in jdk8 b122 build and jvisualvm.1 and jcmd.1 missing on macosx
erikj
parents: 23600
diff changeset
   374
    JDK_MAN_PAGES := $(filter-out jmc.1, $(JDK_MAN_PAGES))
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   375
  endif
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   376
  ifeq ($(OPENJDK_TARGET_OS), macosx)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   377
    MAN_SRC_DIR := $(MAN_SRC_BASEDIR)/bsd/doc
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   378
    MAN1_SUBDIR := man
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   379
  endif
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   380
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   381
  $(JRE_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/%
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   382
	$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   383
	$(install-file)
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   384
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   385
  $(JDK_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/%
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   386
	$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   387
	$(install-file)
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   388
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   389
  $(JRE_IMAGE_DIR)/man/man1/%: $(JDK_OUTPUTDIR)/impdoc/$(MAN1_SUBDIR)/%
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   390
	$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   391
	$(install-file)
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   392
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   393
  $(JDK_IMAGE_DIR)/man/man1/%: $(JDK_OUTPUTDIR)/impdoc/$(MAN1_SUBDIR)/%
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   394
	$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   395
	$(install-file)
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   396
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   397
  define install-ja-manpage
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   398
	$(MKDIR) -p $(@D)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   399
	$(CAT) $< \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   400
	    | $(NATIVE2ASCII) -encoding eucJP \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   401
	    | $(SED) 's/@@VERSION@@/$(THIS_JDK_VERSION)/g' \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   402
	    | $(NATIVE2ASCII) -reverse -encoding $1 \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   403
	    > $@
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   404
  endef
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   405
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   406
  $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   407
	$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   408
	$(call install-ja-manpage, UTF-8)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   409
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   410
  $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   411
	$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   412
	$(call install-ja-manpage, UTF-8)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   413
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   414
  $(JRE_IMAGE_DIR)/man/ja_JP.PCK/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   415
	$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   416
	$(call install-ja-manpage, PCK)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   417
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   418
  $(JDK_IMAGE_DIR)/man/ja_JP.PCK/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   419
	$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   420
	$(call install-ja-manpage, PCK)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   421
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   422
  ifeq ($(OPENJDK_TARGET_OS), solaris)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   423
    $(JRE_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   424
	$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   425
	$(install-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   426
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   427
    $(JDK_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/%
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   428
	$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   429
	$(install-file)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   430
  endif
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   431
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   432
  ifeq ($(OPENJDK_TARGET_OS), linux)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   433
    $(JRE_IMAGE_DIR)/man/ja:
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   434
	$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   435
	$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   436
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   437
    $(JDK_IMAGE_DIR)/man/ja:
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   438
	$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   439
	$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   440
  endif
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   441
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   442
  ifeq ($(OPENJDK_TARGET_OS), macosx)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   443
    $(JRE_IMAGE_DIR)/man/ja:
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   444
	$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   445
	$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   446
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   447
    $(JDK_IMAGE_DIR)/man/ja:
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   448
	$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   449
	$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   450
  endif
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   451
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   452
  ifeq ($(OPENJDK_TARGET_OS), linux)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   453
    JRE_MAN_PAGE_LIST := $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   454
        $(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   455
        $(JRE_IMAGE_DIR)/man/ja
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   456
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   457
    JDK_MAN_PAGE_LIST := $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   458
        $(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \
23601
d15e005afb07 8031300: No jdeps.1 and jjs.1 man pages in jdk8 b122 build and jvisualvm.1 and jcmd.1 missing on macosx
erikj
parents: 23600
diff changeset
   459
        $(JDK_IMAGE_DIR)/man/ja
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   460
  endif
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   461
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   462
  ifeq ($(OPENJDK_TARGET_OS), solaris)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   463
    JRE_MAN_PAGE_LIST := $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   464
        $(addprefix $(JRE_IMAGE_DIR)/man/ja/man1/, $(JRE_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   465
        $(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   466
        $(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JRE_MAN_PAGES))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   467
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   468
    JDK_MAN_PAGE_LIST := $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   469
        $(addprefix $(JDK_IMAGE_DIR)/man/ja/man1/, $(JDK_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   470
        $(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   471
        $(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JDK_MAN_PAGES))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   472
  endif
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   473
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   474
  ifeq ($(OPENJDK_TARGET_OS), macosx)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   475
    JRE_MAN_PAGE_LIST := $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   476
        $(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   477
        $(JRE_IMAGE_DIR)/man/ja
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   478
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   479
    JDK_MAN_PAGE_LIST := $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   480
        $(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   481
        $(JDK_IMAGE_DIR)/man/ja
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   482
  endif
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   483
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   484
endif # Windows
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   485
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   486
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   487
# /demo dir
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   488
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   489
# FIXME: demo/applets/GraphLayout/GraphPanel$2.class is sometimes not copied.
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   490
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   491
# The db demo contains an empty dir that needs to be copied. The other
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   492
# directories will always trigger the rule for recompile since
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   493
# _the.list_of_packages files are touched.
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   494
$(JDK_IMAGE_DIR)/demo/%: $(JDK_OUTPUTDIR)/demo/%
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   495
	if [ ! -d "$@" ]; then \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   496
	  $(ECHO) $(LOG_INFO) Copying '$(patsubst $(OUTPUT_ROOT)/%,%,$@)'; \
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   497
	  $(MKDIR) -p $(@D); \
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   498
	  if [ -d "$<" ]; then $(MKDIR) -p $@; else $(CP) '$<' '$@'; fi \
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   499
	fi
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   500
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   501
# Find all files including directories
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   502
JDK_DEMO_TARGETS := $(patsubst $(JDK_OUTPUTDIR)/demo/%, $(JDK_IMAGE_DIR)/demo/%, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   503
    $(shell $(FIND) $(JDK_OUTPUTDIR)/demo ! \( -name "_the*" -o -name "javac_state" \) ))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   504
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   505
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   506
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   507
# Param 1 is source file
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   508
define CreateOverlayDemoRule
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   509
  $1_TARGET := $$(subst $(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   510
      $$(dir $1)$(OPENJDK_TARGET_CPU_ISADIR)/$$(notdir $1))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   511
  $$($1_TARGET): $1
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   512
	$(ECHO) $(LOG_INFO) Copying '$$(patsubst $(OUTPUT_ROOT)/%,%,$$@)'
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   513
	$$(call install-file)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   514
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   515
  JDK_OVERLAY_DEMO_TARGETS += $$($1_TARGET)
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   516
endef
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   517
JDK_OVERLAY_DEMO_SOURCES := $(filter %$(SHARED_LIBRARY_SUFFIX), $(call CacheFind, $(JDK_OUTPUTDIR)/demo))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   518
$(foreach lib, $(JDK_OVERLAY_DEMO_SOURCES), $(eval $(call CreateOverlayDemoRule, $(lib))))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   519
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   520
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   521
# /sample dir
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   522
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   523
$(foreach f,$(call CacheFind,$(JDK_OUTPUTDIR)/sample), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   524
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_SAMPLE_TARGETS)))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   525
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   526
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   527
# /db dir
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   528
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   529
ifndef OPENJDK
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   530
  $(IMAGES_OUTPUTDIR)/_unzip/%.unzipped: $(JDK_TOPDIR)/src/closed/share/db/%
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   531
	$(ECHO) Unzipping $(patsubst $(SRC_ROOT)/%,%,$<)
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   532
	$(MKDIR) -p $(JDK_IMAGE_DIR)/db
17428
5c68e5cbfde0 8013403: Update JDK8 with Java DB 10.10.1.1.
dwanvik
parents: 16511
diff changeset
   533
	cd $(JDK_IMAGE_DIR)/db && $(UNZIP) -q -o $< -x */index.html */KEYS */test/* *javadoc/* */docs/* */demo/* 2> /dev/null
5c68e5cbfde0 8013403: Update JDK8 with Java DB 10.10.1.1.
dwanvik
parents: 16511
diff changeset
   534
	cd $(JDK_IMAGE_DIR)/db && $(MV) db-derby-*-bin/* . && $(RM) -r db-derby-*-bin
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   535
	$(MKDIR) -p $(@D)
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   536
	$(TOUCH) $@
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   537
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   538
  $(JDK_IMAGE_DIR)/db/README-JDK.html: $(JDK_TOPDIR)/src/closed/share/db/README-JDK.html
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   539
	$(ECHO) $(LOG_INFO) Copying '$(patsubst $(OUTPUT_ROOT)/%,%,$@)'
20544
636a866d26f0 8026144: Missing mkdir in Images.gmk
erikj
parents: 20201
diff changeset
   540
	$(MKDIR) -p $(@D)
17428
5c68e5cbfde0 8013403: Update JDK8 with Java DB 10.10.1.1.
dwanvik
parents: 16511
diff changeset
   541
	$(CAT) $< | $(SED) "s/XXXX/$(shell cat $(JDK_TOPDIR)/src/closed/share/db/COPYRIGHTYEAR)/" > $@
5c68e5cbfde0 8013403: Update JDK8 with Java DB 10.10.1.1.
dwanvik
parents: 16511
diff changeset
   542
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   543
  $(JDK_IMAGE_DIR)/db/3RDPARTY: $(JDK_TOPDIR)/src/closed/share/db/3RDPARTY
17428
5c68e5cbfde0 8013403: Update JDK8 with Java DB 10.10.1.1.
dwanvik
parents: 16511
diff changeset
   544
	$(ECHO) $(LOG_INFO) Copying '$(patsubst $(OUTPUT_ROOT)/%,%,$@)'
20544
636a866d26f0 8026144: Missing mkdir in Images.gmk
erikj
parents: 20201
diff changeset
   545
	$(MKDIR) -p $(@D)
17428
5c68e5cbfde0 8013403: Update JDK8 with Java DB 10.10.1.1.
dwanvik
parents: 16511
diff changeset
   546
	$(CAT) $< | $(SED) "s/XXXX/$(shell cat $(JDK_TOPDIR)/src/closed/share/db/COPYRIGHTYEAR)/" > $@
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   547
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   548
  JDK_DB_TARGETS := $(patsubst $(JDK_TOPDIR)/src/closed/share/db/%, $(IMAGES_OUTPUTDIR)/_unzip/%.unzipped, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   549
      $(wildcard $(JDK_TOPDIR)/src/closed/share/db/*.zip)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   550
      $(JDK_IMAGE_DIR)/db/README-JDK.html $(JDK_IMAGE_DIR)/db/3RDPARTY
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   551
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   552
endif
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   553
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   554
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   555
# /include dir
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   556
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   557
$(foreach f,$(call CacheFind,$(JDK_OUTPUTDIR)/include), \
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   558
    $(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_INCLUDE_TARGETS)))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   559
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   560
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   561
# doc files
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   562
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   563
ifdef OPENJDK
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   564
  JRE_DOC_FILES := LICENSE ASSEMBLY_EXCEPTION THIRD_PARTY_README
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   565
  JDK_DOC_FILES := LICENSE ASSEMBLY_EXCEPTION THIRD_PARTY_README
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   566
  JRE_DOC_LOCATION := $(JDK_TOPDIR)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   567
  JDK_DOC_LOCATION := $(JDK_TOPDIR)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   568
else
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   569
  JRE_DOC_FILES := COPYRIGHT Welcome.html LICENSE THIRDPARTYLICENSEREADME.txt
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   570
  JDK_DOC_FILES := COPYRIGHT README.html LICENSE THIRDPARTYLICENSEREADME.txt
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   571
  ifeq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   572
    JRE_DOC_FILES += README.txt
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   573
  else
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   574
    JRE_DOC_FILES += README
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   575
  endif
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   576
  JDK_DOC_FILES += demo/DEMOS_LICENSE sample/SAMPLES_LICENSE
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   577
  JRE_DOC_LOCATION := $(JDK_TOPDIR)/src/closed/share/doc/jre
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   578
  JDK_DOC_LOCATION := $(JDK_TOPDIR)/src/closed/share/doc/jdk
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   579
endif
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   580
JRE_DOC_TARGETS := $(addprefix $(JRE_IMAGE_DIR)/, $(JRE_DOC_FILES))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   581
JDKJRE_DOC_TARGETS := $(addprefix $(JDK_IMAGE_DIR)/jre/, $(JRE_DOC_FILES))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   582
JDK_DOC_TARGETS := $(addprefix $(JDK_IMAGE_DIR)/, $(JDK_DOC_FILES))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   583
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   584
$(JRE_IMAGE_DIR)/%: $(JRE_DOC_LOCATION)/%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   585
	$(process-doc-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   586
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   587
$(JDK_IMAGE_DIR)/jre/%: $(JRE_DOC_LOCATION)/%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   588
	$(process-doc-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   589
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   590
$(JRE_IMAGE_DIR)/README.txt: $(JRE_DOC_LOCATION)/README
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   591
	$(process-doc-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   592
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   593
$(JDK_IMAGE_DIR)/jre/README.txt: $(JRE_DOC_LOCATION)/README
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   594
	$(process-doc-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   595
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   596
$(JDK_IMAGE_DIR)/%: $(JDK_DOC_LOCATION)/%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   597
	$(process-doc-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   598
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   599
$(JDK_IMAGE_DIR)/demo/%: $(JDK_DOC_LOCATION)/%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   600
	$(process-doc-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   601
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   602
$(JDK_IMAGE_DIR)/sample/%: $(JDK_DOC_LOCATION)/%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   603
	$(process-doc-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   604
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   605
JRE_INFO_FILE := $(JRE_IMAGE_DIR)/release
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   606
JDK_INFO_FILE := $(JDK_IMAGE_DIR)/release
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   607
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   608
JRE_OVERLAY_INFO_FILE := $(JRE_OVERLAY_IMAGE_DIR)/release
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   609
JDK_OVERLAY_INFO_FILE := $(JDK_OVERLAY_IMAGE_DIR)/release
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   610
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   611
# Common way to emit a line into the release or info file
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   612
define info-file-item # name value
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   613
	$(PRINTF) '%s="%s"\n' $1 $2 >> $@
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   614
endef
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   615
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   616
define create-info-file
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   617
	$(MKDIR) -p $(@D)
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   618
	$(RM) $@
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   619
	$(call info-file-item, "JAVA_VERSION", "$(JDK_VERSION)")
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   620
	$(call info-file-item, "OS_NAME", "$(REQUIRED_OS_NAME)")
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   621
	$(call info-file-item, "OS_VERSION", "$(REQUIRED_OS_VERSION)")
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   622
	$(call info-file-item, "OS_ARCH", "$(OPENJDK_TARGET_CPU_LEGACY)")
16041
b9d38accf302 8005545: Add System property to identify ARCH specific details such as ARM hard-float binaries
vladidan
parents: 15693
diff changeset
   623
	if [ -n "$(JDK_ARCH_ABI_PROP_NAME)" ]; then $(call info-file-item, "SUN_ARCH_ABI", "$(JDK_ARCH_ABI_PROP_NAME)"); fi
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   624
	$(call info-file-item, "SOURCE", "$(ALL_SOURCE_TIPS)")
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   625
endef
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   626
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   627
ALL_SOURCE_TIPS = $(shell \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   628
    if [ -f $(OUTPUT_ROOT)/source_tips ] ; then \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   629
      $(CAT) $(OUTPUT_ROOT)/source_tips ; \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   630
    fi)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   631
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   632
$(JRE_INFO_FILE): $(OUTPUT_ROOT)/spec.gmk $(OUTPUT_ROOT)/source_tips
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   633
	$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   634
	$(call create-info-file)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   635
        ifneq ($(PROFILE), )
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   636
	  $(call info-file-item, "JAVA_PROFILE", "$(call profile_name, $(call profile_number, $(PROFILE)))")
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   637
        endif
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   638
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   639
$(JDK_INFO_FILE): $(OUTPUT_ROOT)/spec.gmk $(OUTPUT_ROOT)/source_tips
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   640
	$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   641
	$(call create-info-file)
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   642
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   643
$(JRE_OVERLAY_INFO_FILE): $(OUTPUT_ROOT)/spec.gmk $(OUTPUT_ROOT)/source_tips
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   644
	$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   645
	$(call create-info-file)
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   646
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   647
$(JDK_OVERLAY_INFO_FILE): $(OUTPUT_ROOT)/spec.gmk $(OUTPUT_ROOT)/source_tips
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   648
	$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   649
	$(call create-info-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   650
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   651
$(JDK_IMAGE_DIR)/src.zip: $(IMAGES_OUTPUTDIR)/src.zip
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   652
	$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   653
	$(install-file)
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   654
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   655
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   656
# Post processing (strip etc)
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   657
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   658
ifneq ($(POST_STRIP_CMD), )
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   659
  ifeq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   660
    EXEC_LIST_BIN := $(filter-out %$(notdir $(MSVCR_DLL)), $(filter %.exe %.dll, $(ALL_BIN_LIST)))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   661
  else
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   662
    # Find all executables in JDK_OUTPUTDIR since they exist when this makefile is parsed
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   663
    EXEC_LIST_BIN := $(shell $(FILE) `$(FIND) $(JDK_OUTPUTDIR)/bin -type f -name \*$(EXE_SUFFIX) ! -name \*.debuginfo` \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   664
        | $(EGREP) 'ELF' | $(CUT) -d':' -f1)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   665
    # On mac, the old build searches for static libraries for stripping instead of shared.
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   666
    # Not clear if it's intentional.
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   667
    ifneq ($(OPENJDK_TARGET_OS), macosx)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   668
      EXEC_LIST_LIB := $(shell $(FIND) $(JDK_OUTPUTDIR)/lib -type f -name \*$(SHARED_LIBRARY_SUFFIX))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   669
    endif
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   670
  endif
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   671
  # Filter out sjavac
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   672
  EXEC_LIST_BIN := $(filter-out %sjavac$(EXE_SUFFIX), $(EXEC_LIST_BIN))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   673
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   674
  # Filter out the overlay specific bin files
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   675
  EXEC_LIST := $(filter-out $(OVERLAY_FILTER), $(EXEC_LIST_BIN)) $(EXEC_LIST_LIB)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   676
  EXEC_LIST_OVERLAY := $(filter $(OVERLAY_FILTER), $(EXEC_LIST_BIN)) $(EXEC_LIST_LIB)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   677
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   678
  # Filter out non JRE files and convert to unique touch files to depend on
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   679
  JRE_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, $(IMAGES_OUTPUTDIR)/_strip_jre$(PROFILE)/%.stripped, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   680
      $(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES) $(NOT_JRE_LIB_FILES) $(JDKJRE_LIB_FILES)), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   681
      $(EXEC_LIST)))
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   682
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   683
  JDKJRE_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   684
      $(IMAGES_OUTPUTDIR)/_strip_jdk/jre/%.stripped, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   685
      $(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES) $(NOT_JRE_LIB_FILES)), $(EXEC_LIST)))
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   686
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   687
  JDK_BIN_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   688
      $(IMAGES_OUTPUTDIR)/_strip_jdk/%.stripped, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   689
      $(filter-out $(JDK_OUTPUTDIR)/lib/%, $(EXEC_LIST)))
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   690
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   691
  # Do the same for overlay image
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   692
  JRE_OVERLAY_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, $(IMAGES_OUTPUTDIR)/_strip_jre_overlay/%.stripped, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   693
      $(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES) $(NOT_JRE_LIB_FILES) $(JDKJRE_LIB_FILES)), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   694
      $(EXEC_LIST_OVERLAY)))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   695
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   696
  JDKJRE_OVERLAY_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   697
      $(IMAGES_OUTPUTDIR)/_strip_jdk_overlay/jre/%.stripped, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   698
      $(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES) $(NOT_JRE_LIB_FILES)), $(EXEC_LIST_OVERLAY)))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   699
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   700
  JDK_OVERLAY_BIN_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   701
      $(IMAGES_OUTPUTDIR)/_strip_jdk_overlay/%.stripped, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   702
      $(filter-out $(JDK_OUTPUTDIR)/lib/%, $(EXEC_LIST_OVERLAY)))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   703
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   704
  define mcs-file
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   705
	$(if $(POST_MCS_CMD), $(POST_MCS_CMD) $<)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   706
  endef
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   707
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   708
  define strip-file
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   709
	$(ECHO) Stripping $(LOG_INFO) $(patsubst $(OUTPUT_ROOT)/%,%,$<)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   710
	$(CHMOD) u+w $<
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   711
	$(POST_STRIP_CMD) $<
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   712
	$(call mcs-file)
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   713
	$(CHMOD) go-w $<
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   714
	$(MKDIR) -p $(@D)
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   715
	$(TOUCH) $@
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   716
  endef
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   717
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   718
  # Setup a rule for stripping files based on touch files
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   719
  $(IMAGES_OUTPUTDIR)/_strip_jre$(PROFILE)/%.stripped: $(JRE_IMAGE_DIR)/%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   720
	$(call strip-file)
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   721
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   722
  $(IMAGES_OUTPUTDIR)/_strip_jdk/%.stripped: $(JDK_IMAGE_DIR)/%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   723
	$(call strip-file)
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   724
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   725
  $(IMAGES_OUTPUTDIR)/_strip_jre_overlay/%.stripped: $(JRE_OVERLAY_IMAGE_DIR)/%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   726
	$(call strip-file)
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   727
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   728
  $(IMAGES_OUTPUTDIR)/_strip_jdk_overlay/%.stripped: $(JDK_OVERLAY_IMAGE_DIR)/%
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   729
	$(call strip-file)
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   730
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   731
endif
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   732
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   733
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   734
# Main targets
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   735
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   736
jre-image: $(JRE_BIN_TARGETS) $(JRE_LIB_TARGETS) $(JRE_IMAGE_DIR)/lib/applet \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   737
    $(JRE_IMAGE_DIR)/lib/meta-index $(JRE_IMAGE_DIR)/lib/ext/meta-index \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   738
    $(JRE_MAN_PAGE_LIST) $(JRE_DOC_TARGETS) $(JRE_INFO_FILE) $(JRE_STRIP_LIST) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   739
    $(JRE_BIN_ISADIR_LINK_TARGETS)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   740
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   741
jdk-image: $(JDK_BIN_TARGETS) $(JDKJRE_BIN_TARGETS) \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   742
    $(JDK_LIB_TARGETS) $(JDKJRE_LIB_TARGETS) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   743
    $(JDK_IMAGE_DIR)/jre/lib/applet \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   744
    $(JDK_DEMO_TARGETS) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   745
    $(JDK_IMAGE_DIR)/jre/lib/meta-index $(JDK_IMAGE_DIR)/jre/lib/ext/meta-index \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   746
    $(JDK_MAN_PAGE_LIST) $(JDK_SAMPLE_TARGETS) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   747
    $(JDK_DB_TARGETS) $(JDK_INCLUDE_TARGETS) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   748
    $(JDKJRE_DOC_TARGETS) $(JDK_DOC_TARGETS) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   749
    $(JDK_INFO_FILE) $(JDKJRE_STRIP_LIST) $(JDK_BIN_STRIP_LIST) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   750
    $(JDK_IMAGE_DIR)/src.zip \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   751
    $(JDK_BIN_ISADIR_LINK_TARGETS) $(JDKJRE_BIN_ISADIR_LINK_TARGETS)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   752
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   753
jre-overlay-image: $(JRE_OVERLAY_BIN_TARGETS) $(JRE_OVERLAY_LIB_TARGETS) \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   754
    $(JRE_OVERLAY_INFO_FILE) $(JRE_OVERLAY_STRIP_LIST)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   755
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   756
jdk-overlay-image: $(JDK_OVERLAY_BIN_TARGETS) $(JDKJRE_OVERLAY_BIN_TARGETS) \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   757
    $(JDK_OVERLAY_LIB_TARGETS) $(JDKJRE_OVERLAY_LIB_TARGETS) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   758
    $(JDK_OVERLAY_DEMO_TARGETS) $(JDK_OVERLAY_INFO_FILE) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   759
    $(JDKJRE_OVERLAY_STRIP_LIST) $(JDK_OVERLAY_BIN_STRIP_LIST)
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13497
diff changeset
   760
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   761
ifneq ($(PROFILE), )
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   762
  PROFILE_IMAGE_JARS := $(filter %.jar, $(JRE_LIB_TARGETS))
15693
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15681
diff changeset
   763
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   764
  PROFILE_IMAGE_JARS_CHECKED := $(IMAGES_OUTPUTDIR)/lib$(PROFILE)/_jars_checked
15693
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15681
diff changeset
   765
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   766
  $(PROFILE_IMAGE_JARS_CHECKED) : $(PROFILE_IMAGE_JARS)
15693
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15681
diff changeset
   767
	$(TOOL_CHECKDEPS) $(JRE_IMAGE_DIR) \
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15681
diff changeset
   768
	    $(call profile_name, $(call profile_number, $(PROFILE)))
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15681
diff changeset
   769
	$(TOUCH) $@
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15681
diff changeset
   770
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   771
  profile-image: $(JRE_BIN_TARGETS) $(JRE_LIB_TARGETS) \
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents: 15140
diff changeset
   772
	$(JRE_IMAGE_DIR)/lib/meta-index $(JRE_IMAGE_DIR)/lib/ext/meta-index \
15693
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15681
diff changeset
   773
	$(JRE_INFO_FILE) $(JRE_STRIP_LIST) $(PROFILE_IMAGE_JARS_CHECKED)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents: 15140
diff changeset
   774
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20544
diff changeset
   775
  .PHONY: profile-image
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents: 15140
diff changeset
   776
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents: 15140
diff changeset
   777
endif # Profile
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents: 15140
diff changeset
   778
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   779
################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   780
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   781
.PHONY: default images jre-image jdk-image
17736
e44c3c632dfa 8015644: makefile changes to allow integration of new features
katleman
parents: 17507
diff changeset
   782
22963
a28e6f0b511b 8034191: Move relevant parts of build system to new closed repo
ihse
parents: 22342
diff changeset
   783
# Hook to include the corresponding custom file, if present.
a28e6f0b511b 8034191: Move relevant parts of build system to new closed repo
ihse
parents: 22342
diff changeset
   784
$(eval $(call IncludeCustomExtension, jdk, Images.gmk))