jdk/make/common/Release.gmk
author alanb
Tue, 07 Sep 2010 08:36:10 +0100
changeset 6532 46e43203603e
parent 6111 48902dd9b4d7
child 7666 7b994e3dd41d
permissions -rw-r--r--
6971706: sun/nio/cs/ext/* classes are duplicated between rt.jar, charsets.jar, and localedata.jar Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5381
diff changeset
     2
# Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5381
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5381
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5381
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5381
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5381
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
include $(JDK_TOPDIR)/make/docs/CORE_PKGS.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
include $(JDK_TOPDIR)/make/docs/NON_CORE_PKGS.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
# Perform release engineering tasks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
# images    An image is what the product looks like when it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#           installed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
IMAGE_BINDIR = bin
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
# The compiler should not issue a "Sun Propietary" warning when compiling
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
# classes in the com.sun.java.swing.plaf packages, since we've always
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
# allowed, and even advocated, extending them (see bug 6476749).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# This approach is NOT to be used as a general purpose way to avoid such
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
# compiler warnings for non-core packages. The correct way is to document
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
# the packages in NON_CORE_PKGS.gmk, and include them in the NON_CORE_PKGS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
# definition.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
# Swing has taken this approach only as a temporary measure to avoid
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
# the compiler warnings until we can properly document these packages.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
# This is covered under 6491853.
5593
b89c8108f831 6929507: Build error on file swing.plaf.synth.SynthUI
peterz
parents: 5381
diff changeset
    50
EXCLUDE_PROPWARN_PKGS = com.sun.java.swing.plaf.windows  \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                        com.sun.java.swing.plaf.motif    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
                        com.sun.java.swing.plaf.gtk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
2763
172d44ffd1e5 6839802: java.dyn needs to be on the CORE_PKGS list
jrose
parents: 1846
diff changeset
    54
# This is a stopgap until 6839872 is fixed.
172d44ffd1e5 6839802: java.dyn needs to be on the CORE_PKGS list
jrose
parents: 1846
diff changeset
    55
EXCLUDE_PROPWARN_PKGS += sun.dyn
172d44ffd1e5 6839802: java.dyn needs to be on the CORE_PKGS list
jrose
parents: 1846
diff changeset
    56
5789
246b84dc50d9 6960789: com.sun.servicetag API needs to be added in ct.sym
mchung
parents: 5506
diff changeset
    57
#
246b84dc50d9 6960789: com.sun.servicetag API needs to be added in ct.sym
mchung
parents: 5506
diff changeset
    58
# Include the exported private packages in ct.sym.
246b84dc50d9 6960789: com.sun.servicetag API needs to be added in ct.sym
mchung
parents: 5506
diff changeset
    59
# This is an interim solution until the ct.sym is replaced
246b84dc50d9 6960789: com.sun.servicetag API needs to be added in ct.sym
mchung
parents: 5506
diff changeset
    60
# with a new module system (being discussed for JDK 7).
246b84dc50d9 6960789: com.sun.servicetag API needs to be added in ct.sym
mchung
parents: 5506
diff changeset
    61
#
246b84dc50d9 6960789: com.sun.servicetag API needs to be added in ct.sym
mchung
parents: 5506
diff changeset
    62
EXPORTED_PRIVATE_PKGS = com.sun.servicetag
246b84dc50d9 6960789: com.sun.servicetag API needs to be added in ct.sym
mchung
parents: 5506
diff changeset
    63
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
# 64-bit solaris has a few special cases. We define the variable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
# SOLARIS64 for use in this Makefile to easily test those cases
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
ifeq ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
  ifeq ($(ARCH_DATA_MODEL), 64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    SOLARIS64 = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    IMAGE_BINDIR = bin/$(ARCH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
JTG_DOCS            = $(JDK_TOPDIR)/src/solaris/doc
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
#We use this for man page header
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
jdkversion := $(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION).$(JDK_MICRO_VERSION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
# Text documents on windows use this suffix
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
  TEXT_SUFFIX = .txt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
# The base names of all the license and document files for the jdk and jre
920
e455938eb00c 6734977: Fix build failure regarding the now deleted file jdk/README.html
ohair
parents: 715
diff changeset
    84
#   (These files get placed in the jdk and jre install images)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
ifdef OPENJDK
920
e455938eb00c 6734977: Fix build failure regarding the now deleted file jdk/README.html
ohair
parents: 715
diff changeset
    86
  # Where to find these files
e455938eb00c 6734977: Fix build failure regarding the now deleted file jdk/README.html
ohair
parents: 715
diff changeset
    87
  SHARE_JDK_DOC_SRC = $(JDK_TOPDIR)
e455938eb00c 6734977: Fix build failure regarding the now deleted file jdk/README.html
ohair
parents: 715
diff changeset
    88
  SHARE_JRE_DOC_SRC = $(JDK_TOPDIR)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
  # Same files for jdk and jre, no name changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
  LICENSE_DOCLIST_JDK = LICENSE     ASSEMBLY_EXCEPTION
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
  LICENSE_DOCLIST_JRE = LICENSE     ASSEMBLY_EXCEPTION
920
e455938eb00c 6734977: Fix build failure regarding the now deleted file jdk/README.html
ohair
parents: 715
diff changeset
    92
  OTHER_DOCLIST_JDK   = THIRD_PARTY_README
e455938eb00c 6734977: Fix build failure regarding the now deleted file jdk/README.html
ohair
parents: 715
diff changeset
    93
  OTHER_DOCLIST_JRE   = THIRD_PARTY_README
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
else
920
e455938eb00c 6734977: Fix build failure regarding the now deleted file jdk/README.html
ohair
parents: 715
diff changeset
    95
  # Where to find these files
e455938eb00c 6734977: Fix build failure regarding the now deleted file jdk/README.html
ohair
parents: 715
diff changeset
    96
  SHARE_JDK_DOC_SRC = $(CLOSED_SHARE_SRC)/doc/jdk
e455938eb00c 6734977: Fix build failure regarding the now deleted file jdk/README.html
ohair
parents: 715
diff changeset
    97
  SHARE_JRE_DOC_SRC = $(CLOSED_SHARE_SRC)/doc/jre
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
  # Select the pre-release or FCS license version based on the build milestone.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
  LICENSE_VERSION=.pre
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
  ifeq ($(MILESTONE), fcs)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    LICENSE_VERSION=.fcs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
  ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    LICENSE_DOCLIST_JDK = $(subst $(LICENSE_VERSION),,\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
		   $(shell $(CD) $(SHARE_JDK_DOC_SRC) && \
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   106
		           $(LS) *LICENSE*$(LICENSE_VERSION)))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    LICENSE_DOCLIST_JRE = $(subst $(LICENSE_VERSION),,\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
		   $(shell $(CD) $(SHARE_JRE_DOC_SRC) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
		           $(LS) *LICENSE*$(LICENSE_VERSION)))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
  else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    LICENSE_DOCLIST_JDK = $(subst $(LICENSE_VERSION),,\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
	         $(shell $(CD) $(SHARE_JDK_DOC_SRC) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
		         $(LS) *LICENSE*$(LICENSE_VERSION) | $(GREP) -v rtf))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    LICENSE_DOCLIST_JRE = $(subst $(LICENSE_VERSION),,\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
	         $(shell $(CD) $(SHARE_JRE_DOC_SRC) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
		         $(LS) *LICENSE*$(LICENSE_VERSION) | $(GREP) -v rtf))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
  OTHER_DOCLIST_JDK = COPYRIGHT README.html README_ja.html README_zh_CN.html
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
  OTHER_DOCLIST_JRE = COPYRIGHT Welcome.html
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
  JRE_NAMECHANGE_DOCLIST = README
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
# Paths to these files we need
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
JDK_LICENSES   = $(LICENSE_DOCLIST_JDK:%=$(JDK_IMAGE_DIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
JDK64_LICENSES = $(LICENSE_DOCLIST_JDK:%=$(JDK_IMAGE_DIR)/%64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
JDK_DOCFILES   = $(OTHER_DOCLIST_JDK:%=$(JDK_IMAGE_DIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
JRE_LICENSES   = $(LICENSE_DOCLIST_JRE:%=$(JRE_IMAGE_DIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
JRE64_LICENSES = $(LICENSE_DOCLIST_JRE:%=$(JRE_IMAGE_DIR)/%64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
JRE_DOCFILES   = $(OTHER_DOCLIST_JRE:%=$(JRE_IMAGE_DIR)/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
JRE_DOCFILES  += $(JRE_NAMECHANGE_DOCLIST:%=$(JRE_IMAGE_DIR)/%$(TEXT_SUFFIX))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
# absolute directory names: note, these must exist prior to build
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
# time - they are created in the main Makefile.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
JRE_IMAGE_BINDIR   = $(JRE_IMAGE_DIR)/bin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
JRE_IMAGE_THREADIR = $(JRE_IMAGE_DIR)/bin/*/native_threads
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
MAINMANIFEST  = $(JDK_TOPDIR)/make/tools/manifest.mf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
BEANMANIFEST  = $(JDK_TOPDIR)/make/javax/swing/beaninfo/manifest
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
# Man pages
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
JRE_MAN_PAGES =         \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
	java.1		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
	keytool.1	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
	orbd.1          \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
	pack200.1	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
	policytool.1    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
	rmid.1		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
	rmiregistry.1	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
	servertool.1    \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
	tnameserv.1     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
	unpack200.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
ifeq ($(ARCH_DATA_MODEL),32)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
  JRE_MAN_PAGES += javaws.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
JDK_MAN_PAGES =            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
	$(JRE_MAN_PAGES)   \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
	appletviewer.1     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        apt.1              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
	extcheck.1         \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
	idlj.1             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
	jar.1              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
	jarsigner.1        \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
	javac.1            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
	javadoc.1          \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
	javah.1            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
	javap.1            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
	jconsole.1         \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
	jdb.1              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
	jhat.1             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        jinfo.1            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        jmap.1             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        jps.1              \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
	jrunscript.1       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        jsadebugd.1        \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        jstack.1           \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        jstat.1            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        jstatd.1           \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
	native2ascii.1     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
	rmic.1             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        schemagen.1        \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
	serialver.1        \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        wsgen.1            \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        wsimport.1         \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        xjc.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
ifeq ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
  MANBASEDIRS=$(JDK_TOPDIR)/src/solaris/doc $(IMPORTDOCDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
  MAN1SUBDIR=sun/man/man1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
endif # solaris
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
ifeq ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
  MANBASEDIRS=$(JDK_TOPDIR)/src/linux/doc $(IMPORTDOCDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
  MAN1SUBDIR=man
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
  JA_DIRNAME=ja_JP.$(JA_SOURCE_ENCODING)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
endif # linux
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
define copy-man-pages
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
$(MKDIR) -p $1/man/man1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
for manbase in $(MANBASEDIRS:%=%/$(MAN1SUBDIR)) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
  for manpage in $2; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    if [ -f $${manbase}/$${manpage} ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
      $(CP) $${manbase}/$${manpage} $1/man/man1 ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
      for ja_encoding in $(JA_TARGET_ENCODINGS); do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        ja_dir="ja"; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        if [ "$${ja_encoding}" != "$(JA_SOURCE_ENCODING)" ]; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
          ja_dir="ja_JP.$${ja_encoding}"; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
	fi; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        $(MKDIR) -p $1/man/$${ja_dir}/man1; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        $(CAT) $${manbase}/ja/$${manpage} \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
          | $(NATIVE2ASCII) -encoding $(JA_SOURCE_ENCODING) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
          | $(SED) 's/@@VERSION@@/$(jdkversion)/g' \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
          | $(NATIVE2ASCII) -reverse -encoding $${ja_encoding} \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            > $1/man/$${ja_dir}/man1/$${manpage}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
      done; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    fi; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
  done; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
if [ "$(JA_DIRNAME)" != "" ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
  $(MV) $1/man/ja $1/man/$(JA_DIRNAME); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
  $(CD) $1/man && $(LN) -s $(JA_DIRNAME) ja; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
endef
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
# Targets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
INITIAL_IMAGE_JRE=initial-image-jre
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
INITIAL_IMAGE_JDK=initial-image-jdk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
ifeq ($(PLATFORM), solaris)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
  ifeq ($(ARCH_DATA_MODEL), 64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    INITIAL_IMAGE_JRE=initial-image-jre-sol64
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    INITIAL_IMAGE_JDK=initial-image-jdk-sol64
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
images images-clobber \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
initial-image-jre initial-image-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
initial-image-jre-sol64 initial-image-jdk-sol64 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
trim-image-jre trim-image-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
process-image-jre process-image-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
compare-image \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
sec-files sec-files-win jgss-files ::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
	@$(ECHO) ">>>Making "$@" @ `$(DATE)` ..."
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
# Export binary plugs if not building OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
ifdef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
  EXPORT_BINARY_PLUGS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
else # !OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
  EXPORT_BINARY_PLUGS = export-binary-plugs test-binary-plugs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
endif # OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
# Order is important here, trim jre after jdk image is created
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
images:: sanity-images post-sanity-images  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
         $(EXPORT_BINARY_PLUGS) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
	 $(INITIAL_IMAGE_JRE) $(INITIAL_IMAGE_JDK) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
	 trim-image-jre trim-image-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
	 process-image-jre process-image-jdk sec-files sec-files-win jgss-files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
# Don't use these
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
image-jre:: initial-image-jre trim-image-jre process-image-jre
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
image-jdk:: initial-image-jdk trim-image-jdk process-image-jdk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
# Sources we ship in the SDK.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
SOURCES = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
	java/applet			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
	java/awt			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
	java/beans			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
	java/io				\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
	java/lang			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
	java/math			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
	java/net			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
	java/nio			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
	java/rmi			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
	java/security			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
	java/sql			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
	java/text			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
	java/util			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
	com/sun/corba			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
	com/sun/image/codec/jpeg	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
	com/sun/imageio                 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
	com/sun/java/swing		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
	com/sun/javadoc			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
	com/sun/jmx			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
	com/sun/mirror			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
	com/sun/source			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
	com/sun/naming			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
	com/sun/security/auth		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
	com/sun/security/jgss		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
	javax/accessibility		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
	javax/annotation		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
	javax/script			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
	javax/imageio			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
	javax/lang			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
	javax/management		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
	javax/naming			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
	javax/print			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
	javax/rmi			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
	javax/security			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
	javax/sound			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
	javax/sql			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
	javax/swing			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
	javax/tools			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
	javax/xml			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
	com/sun/org/apache		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
	com/sun/java_cup		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
	com/sun/jlex	        	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
	org/ietf			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
	org/omg				\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
	org/w3c/dom			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
	org/xml/sax			\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
	sunw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
# Directories where sources may be found.  If a file with the same path
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
# name exists in more than one of these places, the one found last on this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
# list wins.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
SOURCE_DIRS = $(SHARE_SRC)/classes $(PLATFORM_SRC)/classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
SOURCE_DIRS += $(GENSRCDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
SOURCE_DIRS += $(IMPORTSRCDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
  SOURCE_DIRS += $(CLOSED_SRC)/share/classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
# Specific files and directories that will be filtered out from above areas.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
#
4115
e09be02771b6 6888701: Change all template java source files to a .java-template file suffix
ohair
parents: 3288
diff changeset
   339
SOURCE_FILTERs = $(SCM_DIRs) ',*'
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
SOURCE_FILES_filter = $(SOURCE_FILTERs:%=-name % -prune -o)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
# Bug 4249883 - excluding some unnecessary packages from com.sun.tools
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
# Bug 5008685 - exclude jconsole from sun/tools
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
TOOLS = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
	META-INF/services/com.sun.jdi.connect.Connector \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
	META-INF/services/com.sun.jdi.connect.spi.TransportService \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
	sun/tools/asm		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
	sun/tools/jar		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
	sun/tools/java		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
	sun/tools/javac		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
	sun/tools/jps		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
	sun/tools/jstat		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
	sun/tools/jstatd	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
	sun/tools/native2ascii	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
	sun/tools/serialver	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
	sun/tools/tree		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
	sun/tools/util		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
	sun/security/tools/JarBASE64Encoder.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
	sun/security/tools/JarSigner.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
	sun/security/tools/JarSignerParameters.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
	sun/security/tools/JarSignerResources.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
	sun/security/tools/JarSignerResources_ja.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
	sun/security/tools/JarSignerResources_zh_CN.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
	sun/security/tools/SignatureFile\$$Block.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
	sun/security/tools/SignatureFile.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
	sun/security/tools/TimestampedSigner.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
	sun/rmi/rmic		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
	sun/applet		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
	sun/jvmstat		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
	com/sun/javadoc		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
	com/sun/jdi		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
	com/sun/jarsigner	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
	com/sun/mirror		\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
	com/sun/source          \
684
d0c10a7892fe 6708729: update jdk Makefiles for new javap
jjg
parents: 2
diff changeset
   378
	com/sun/tools/classfile \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
	com/sun/tools/doclets   \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
	com/sun/tools/example/debug/expr \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
	com/sun/tools/example/debug/tty  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
	com/sun/tools/extcheck  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
	com/sun/tools/hat       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
	com/sun/tools/javac     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
	com/sun/tools/javadoc   \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
	com/sun/tools/apt       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
	com/sun/tools/javah     \
684
d0c10a7892fe 6708729: update jdk Makefiles for new javap
jjg
parents: 2
diff changeset
   388
	com/sun/tools/javap     \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
	com/sun/tools/corba     \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
	com/sun/tools/internal/xjc       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
	com/sun/tools/internal/ws       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
	META-INF/services/com.sun.mirror.apt.AnnotationProcessorFactory \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
	META-INF/services/com.sun.tools.xjc.Plugin \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
	com/sun/istack/internal/tools       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
	com/sun/istack/internal/ws       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        com/sun/codemodel       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
        com/sun/tools/internal/jxc             \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        com/sun/xml/internal/rngom       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        com/sun/xml/internal/xsom       \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        org/relaxng/datatype   \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
	com/sun/xml/internal/dtdparser \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
	com/sun/tools/jdi	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
	com/sun/tools/script/shell	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
	META-INF/services/com.sun.tools.attach.spi.AttachProvider \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
	com/sun/tools/attach	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
	sun/tools/attach	\
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
	sun/tools/jstack        \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
	sun/tools/jinfo         \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
	sun/tools/jmap
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   410
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
# classes that go into jsse.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
JSSE_CLASSES_DIRS = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
	sun/security/provider/Sun.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
	sun/security/rsa/SunRsaSign.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
	sun/security/ssl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
	com/sun/net/ssl/internal/ssl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
# files under $(OUTPUTDIR) that need to go into sec-bin.zip for builds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
# where the corresponding sources are not available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
SEC_FILES_DIRS = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
	classes/javax/net \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
	classes/javax/security/cert \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
	classes/com/sun/net/ssl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
	classes/com/sun/security/cert \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
	classes/sun/net/www/protocol/https \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
	classes/sun/security/pkcs12 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
	classes/sun/security/ssl \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
	classes/sun/security/krb5/*.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
	classes/sun/security/krb5/internal/*.class \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
	classes/sun/security/krb5/internal/ccache \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
	classes/sun/security/krb5/internal/crypto \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
	classes/sun/security/krb5/internal/ktab \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
	classes/sun/security/krb5/internal/rcache \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
	classes/sun/security/krb5/internal/util \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
	classes/sun/security/jgss/spi/GSSContextSpi.class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
# files under $(OUTPUTDIR) that need to go into sec-windows-win.zip for builds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
# where the corresponding sources are not available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
SEC_FILES_WIN_DIRS = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
	classes/sun/security/krb5/internal/tools
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
# files under $(BINDIR) that need to go into jgss_files.zip for builds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
# where the corresponding sources are not available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
JGSS_FILES_DIRS = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
	bin/w2k_lsa_auth.dll \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
	bin/w2k_lsa_auth.map \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
	bin/w2k_lsa_auth.pdb
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
# The following get removed from the SDK image.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
NOTJDKTOOLS = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
	java_vm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
# The following get removed from the JRE after the bulk-copy of BINDIR...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
NOTJRETOOLS = \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
	appletviewer$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
	extcheck$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
	idlj$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
	jar$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
	jarsigner$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
	java-rmi.cgi \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
	javac$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
	javadoc$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
	apt$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
	javah$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
	javap$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
	jdb$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
	jps$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
	jrunscript$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
	jstat$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
	jstatd$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
	jstack$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
	packagebean$(SCRIPT_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
	rmic$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
	serialver$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
	unregbean$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
	jconsole$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
	jinfo$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
	jmap$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
	native2ascii$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
	xjc$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
	wsgen$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
	wsimport$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        schemagen$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
	jsadebugd$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
	jhat$(EXE_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
# The following get removed from the JRE after the bulk-copy of LIBDIR...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
NOTJRELIBS = tools.jar \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        jconsole.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
ifeq ($(INCLUDE_SA), true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
  NOTJRELIBS += sa-jdi.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
  # The following get removed from the JRE after the bulk-copy of LIBDIR...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
  NOTJRE_SHARED_LIBS = $(SALIB_NAME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
  NOTJRE_SHARED_LIBS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
# Attach library is JDK only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
NOTJRE_SHARED_LIBS += $(LIB_PREFIX)attach.$(LIBRARY_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
###### RULES
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
# Processing license files from source area to image area
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
#    These will be modified to have the platform specific EOL chars.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
define process-doc-file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
$(SED) 's/$$//g' $< > $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
$(CHMOD) 444 $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
endef
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
# JDK files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
$(JDK_IMAGE_DIR)/%: $(SHARE_JDK_DOC_SRC)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
	$(process-doc-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
# Removes LICENSE_VERSION or not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
ifdef LICENSE_VERSION
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
$(JDK_IMAGE_DIR)/%: $(SHARE_JDK_DOC_SRC)/%$(LICENSE_VERSION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
	$(process-doc-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
$(JDK_IMAGE_DIR)/%64: $(SHARE_JDK_DOC_SRC)/%$(LICENSE_VERSION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
	$(process-doc-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
$(JDK_IMAGE_DIR)/%64: $(SHARE_JDK_DOC_SRC)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
	$(process-doc-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
# JRE files 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
$(JRE_IMAGE_DIR)/%: $(SHARE_JRE_DOC_SRC)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
	$(process-doc-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
# Add $(TEXT_SUFFIX) suffix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
ifdef TEXT_SUFFIX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
$(JRE_IMAGE_DIR)/%$(TEXT_SUFFIX): $(SHARE_JRE_DOC_SRC)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
	$(process-doc-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
# Removes LICENSE_VERSION or not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
ifdef LICENSE_VERSION
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
$(JRE_IMAGE_DIR)/%: $(SHARE_JRE_DOC_SRC)/%$(LICENSE_VERSION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
	$(process-doc-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
$(JRE_IMAGE_DIR)/%64: $(SHARE_JRE_DOC_SRC)/%$(LICENSE_VERSION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
	$(process-doc-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
$(JRE_IMAGE_DIR)/%64: $(SHARE_JRE_DOC_SRC)/%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
	$(process-doc-file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
# Differences tool
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
DIRDIFF_JARFILE = $(BUILDTOOLJARDIR)/dirdiff.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
######################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
# List of directories in classes directory that should NOT be in rt.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
######################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
NOT_RT_JAR_LIST = $(ABS_TEMPDIR)/not_rt_jar.list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
$(NOT_RT_JAR_LIST): FRC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
	$(ECHO) "#\n" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
	$(ECHO) "# List of subdirectories not in include in rt.jar" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
	$(ECHO) "# Directories must contain trailing '/'." >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
	$(ECHO) "com/sun/javadoc/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
	$(ECHO) "com/sun/jdi/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
	$(ECHO) "com/sun/jarsigner/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
	$(ECHO) "com/sun/mirror/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
	$(ECHO) "com/sun/source/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
	$(ECHO) "com/sun/istack/internal/tools/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
	$(ECHO) "com/sun/istack/internal/ws/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
	$(ECHO) "META-INF/services/com.sun.jdi.connect.Connector" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
	$(ECHO) "META-INF/services/com.sun.jdi.connect.spi.TransportService" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
	$(ECHO) "META-INF/services/com.sun.mirror.apt.AnnotationProcessorFactory" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
	$(ECHO) "META-INF/services/com.sun.tools.xjc.Plugin" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
	$(ECHO) "com/sun/tools/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
	$(ECHO) "sun/jvmstat/" >> $@
6111
48902dd9b4d7 6964313: Find sun/nio/cs/ext issue with CreateSymbols, then move sun/nio/cs/ext to charset.jar
sherman
parents: 5976
diff changeset
   574
	$(ECHO) "sun/nio/cs/ext/" >> $@
48902dd9b4d7 6964313: Find sun/nio/cs/ext issue with CreateSymbols, then move sun/nio/cs/ext to charset.jar
sherman
parents: 5976
diff changeset
   575
	$(ECHO) "sun/awt/HKSCS.class" >> $@
6532
46e43203603e 6971706: sun/nio/cs/ext/* classes are duplicated between rt.jar, charsets.jar, and localedata.jar
alanb
parents: 6111
diff changeset
   576
	$(ECHO) "sun/awt/motif/X11GB2312\$$Decoder.class" >> $@
46e43203603e 6971706: sun/nio/cs/ext/* classes are duplicated between rt.jar, charsets.jar, and localedata.jar
alanb
parents: 6111
diff changeset
   577
	$(ECHO) "sun/awt/motif/X11GB2312\$$Encoder.class" >> $@
6111
48902dd9b4d7 6964313: Find sun/nio/cs/ext issue with CreateSymbols, then move sun/nio/cs/ext to charset.jar
sherman
parents: 5976
diff changeset
   578
	$(ECHO) "sun/awt/motif/X11GB2312.class" >> $@
6532
46e43203603e 6971706: sun/nio/cs/ext/* classes are duplicated between rt.jar, charsets.jar, and localedata.jar
alanb
parents: 6111
diff changeset
   579
	$(ECHO) "sun/awt/motif/X11GBK\$$Encoder.class" >> $@
6111
48902dd9b4d7 6964313: Find sun/nio/cs/ext issue with CreateSymbols, then move sun/nio/cs/ext to charset.jar
sherman
parents: 5976
diff changeset
   580
	$(ECHO) "sun/awt/motif/X11GBK.class" >> $@
6532
46e43203603e 6971706: sun/nio/cs/ext/* classes are duplicated between rt.jar, charsets.jar, and localedata.jar
alanb
parents: 6111
diff changeset
   581
	$(ECHO) "sun/awt/motif/X11KSC5601\$$Decoder.class" >> $@
46e43203603e 6971706: sun/nio/cs/ext/* classes are duplicated between rt.jar, charsets.jar, and localedata.jar
alanb
parents: 6111
diff changeset
   582
	$(ECHO) "sun/awt/motif/X11KSC5601\$$Encoder.class" >> $@
6111
48902dd9b4d7 6964313: Find sun/nio/cs/ext issue with CreateSymbols, then move sun/nio/cs/ext to charset.jar
sherman
parents: 5976
diff changeset
   583
	$(ECHO) "sun/awt/motif/X11KSC5601.class" >> $@
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
	$(ECHO) "sun/rmi/rmic/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
	$(ECHO) "sun/tools/asm/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
	$(ECHO) "sun/tools/java/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
	$(ECHO) "sun/tools/javac/" >> $@
684
d0c10a7892fe 6708729: update jdk Makefiles for new javap
jjg
parents: 2
diff changeset
   588
	$(ECHO) "com/sun/tools/classfile/" >> $@
d0c10a7892fe 6708729: update jdk Makefiles for new javap
jjg
parents: 2
diff changeset
   589
	$(ECHO) "com/sun/tools/javap/" >> $@
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
	$(ECHO) "sun/tools/jconsole/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
	$(ECHO) "sun/tools/jps/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
	$(ECHO) "sun/tools/jstat/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
	$(ECHO) "sun/tools/jstatd/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
	$(ECHO) "sun/tools/native2ascii/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
	$(ECHO) "sun/tools/serialver/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
	$(ECHO) "sun/tools/tree/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
	$(ECHO) "sun/tools/util/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
	$(ECHO) "sun/security/tools/JarBASE64Encoder.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
	$(ECHO) "sun/security/tools/JarSigner.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
	$(ECHO) "sun/security/tools/JarSignerParameters.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
	$(ECHO) "sun/security/tools/JarSignerResources.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
	$(ECHO) "sun/security/tools/JarSignerResources_ja.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
	$(ECHO) "sun/security/tools/JarSignerResources_zh_CN.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
	$(ECHO) "sun/security/tools/SignatureFile\$$Block.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
	$(ECHO) "sun/security/tools/SignatureFile.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
	$(ECHO) "sun/security/tools/TimestampedSigner.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
	$(ECHO) "sun/security/provider/Sun.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
	$(ECHO) "sun/security/rsa/SunRsaSign.class" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
	$(ECHO) "sun/security/ssl/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
	$(ECHO) "com/sun/net/ssl/internal/ssl/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
	$(ECHO) "javax/crypto/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
	$(ECHO) "sun/security/internal/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
	$(ECHO) "com/sun/crypto/provider/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
	$(ECHO) "META-INF/services/com.sun.tools.attach.spi.AttachProvider" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
	$(ECHO) "com/sun/tools/attach/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
	$(ECHO) "org/relaxng/datatype/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
	$(ECHO) "com/sun/codemodel/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
	$(ECHO) "com/sun/xml/internal/dtdparser/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
	$(ECHO) "com/sun/xml/internal/rngom/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
	$(ECHO) "com/sun/xml/internal/xsom/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
	$(ECHO) "com/sun/tools/script/shell/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
	$(ECHO) "sun/tools/attach/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
	$(ECHO) "sun/tools/jstack/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
	$(ECHO) "sun/tools/jinfo/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
	$(ECHO) "sun/tools/jmap/" >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
# File order list for rt.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
#     - sun.applet is included, till hotjava stops relying on it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
#     - sun.tools.jar is included, needs cleanup.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
REORDER_TEMPDIR=$(ABS_TEMPDIR)/reorder
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
TOTAL_JAR_FILELIST=$(REORDER_TEMPDIR)/file_list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
JARFILELISTS_TEMPDIR=$(ABS_TEMPDIR)/jarfilelists
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
RT_JAR_FILELIST=$(JARFILELISTS_TEMPDIR)/rt_jar_list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
RES_JAR_FILELIST=$(JARFILELISTS_TEMPDIR)/resources_jar_list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
JARREORDER_JARFILE = $(ABS_BUILDTOOLJARDIR)/jarreorder.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
$(TOTAL_JAR_FILELIST): $(JARREORDER_JARFILE) $(NOT_RT_JAR_LIST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
	$(RM) $@.temp
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
	($(CD) $(CLASSBINDIR) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
	    $(BOOT_JAVA_CMD) -jar $(JARREORDER_JARFILE) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
		-o  $@.temp $(ABS_LIBDIR)/classlist $(NOT_RT_JAR_LIST) . )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
	$(MV) $@.temp $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
	@($(CD) $(CLASSBINDIR) && $(java-vm-cleanup))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
# Create the rt.jar file list & non-class files list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
JARSPLIT_JARFILE = $(BUILDTOOLJARDIR)/jarsplit.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
$(RT_JAR_FILELIST) + $(RES_JAR_FILELIST): \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
    $(TOTAL_JAR_FILELIST) $(JARSPLIT_JARFILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
	@$(RM) $(RT_JAR_FILELIST) $(RES_JAR_FILELIST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
	$(MKDIR) -p $(JARFILELISTS_TEMPDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
	$(BOOT_JAVA_CMD) -jar $(JARSPLIT_JARFILE) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
		$(TOTAL_JAR_FILELIST) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
		-o  $(RT_JAR_FILELIST) $(RES_JAR_FILELIST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
# Create the manifest file.
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   664
JAR_MANIFEST_FILE=$(ABS_TEMPDIR)/manifest.tmp
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
$(JAR_MANIFEST_FILE): $(MAINMANIFEST) $(BEANMANIFEST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
	$(prep-target)
5552
bca3be14c8bd 6955707: Correct addNotices.sh logic in Makefiles
ohair
parents: 5506
diff changeset
   667
	$(SED) -e "s#@@RELEASE@@#$(RELEASE)#" 		\
bca3be14c8bd 6955707: Correct addNotices.sh logic in Makefiles
ohair
parents: 5506
diff changeset
   668
	       -e "s#@@COMPANY_NAME@@#$(COMPANY_NAME)#" \
bca3be14c8bd 6955707: Correct addNotices.sh logic in Makefiles
ohair
parents: 5506
diff changeset
   669
	       $(MAINMANIFEST) >> $@
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
	$(ECHO) >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
	$(CAT) $(BEANMANIFEST) >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
# Create resources.jar containing non-class files
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   674
RESOURCES_JAR=$(ABS_TEMPDIR)/resources-orig.jar
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   675
$(RESOURCES_JAR): $(RES_JAR_FILELIST) $(JAR_MANIFEST_FILE)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
	$(prep-target)
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   677
	$(CD) $(CLASSBINDIR) && \
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   678
	    $(BOOT_JAR_CMD) c0mf $(JAR_MANIFEST_FILE) $@ \
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   679
	        @$(RES_JAR_FILELIST) $(BOOT_JAR_JFLAGS)
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   680
	@$(CD) $(CLASSBINDIR) && $(java-vm-cleanup)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
# Create jsse.jar containing SunJSSE implementation classes
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   683
JSSE_JAR=$(ABS_TEMPDIR)/jsse-orig.jar
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
$(JSSE_JAR): $(JAR_MANIFEST_FILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
	$(prep-target)
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   686
	$(CD) $(CLASSBINDIR) && \
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   687
	    $(BOOT_JAR_CMD) c0mf $(JAR_MANIFEST_FILE) $@ \
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   688
		$(JSSE_CLASSES_DIRS) $(BOOT_JAR_JFLAGS)
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   689
	@$(CD) $(CLASSBINDIR) && $(java-vm-cleanup)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
# Create sec-bin.zip
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
SEC_FILES_ZIP=$(ABS_TEMPDIR)/sec-bin.zip
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
sec-files::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
	$(RM) $(SEC_FILES_ZIP)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
	$(CD) $(OUTPUTDIR) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
		$(ZIPEXE) -rq9 $(SEC_FILES_ZIP) $(SEC_FILES_DIRS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
# Create sec-windows-bin.zip
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
SEC_FILES_WIN_ZIP=$(ABS_TEMPDIR)/sec-windows-bin.zip
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
sec-files-win::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
	$(RM) $(SEC_FILES_WIN_ZIP)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
	$(CD) $(OUTPUTDIR) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
		$(ZIPEXE) -rq9 $(SEC_FILES_WIN_ZIP) $(SEC_FILES_WIN_DIRS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
# Create JGSS files that contains the native Kerberos library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
JGSS_WIN32_FILES_ZIP=$(ABS_TEMPDIR)/jgss-windows-i586-bin.zip
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
JGSS_WIN64_FILES_ZIP=$(ABS_TEMPDIR)/jgss-windows-x64-bin.zip
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
jgss-files::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
  ifeq ($(ARCH_DATA_MODEL), 32)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
	$(RM) $(JGSS_WIN32_FILES_ZIP)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
	$(CD) $(OUTPUTDIR) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
		$(ZIPEXE) -rq9 $(JGSS_WIN32_FILES_ZIP) $(JGSS_FILES_DIRS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
  else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
	$(RM) $(JGSS_WIN64_FILES_ZIP)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
	$(CD) $(OUTPUTDIR) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
		$(ZIPEXE) -rq9 $(JGSS_WIN64_FILES_ZIP) $(JGSS_FILES_DIRS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
# Create rt.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
RT_JAR=$(ABS_TEMPDIR)/rt-orig.jar
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   731
$(RT_JAR): $(RT_JAR_FILELIST) $(JAR_MANIFEST_FILE)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
	$(prep-target)
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   733
	$(CD) $(CLASSBINDIR) && \
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   734
	    $(BOOT_JAR_CMD) c0mf $(JAR_MANIFEST_FILE) $@ \
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   735
	        @$(RT_JAR_FILELIST) $(BOOT_JAR_JFLAGS)
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   736
	@$(CD) $(CLASSBINDIR) && $(java-vm-cleanup)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
# Meta-index construction to make core class loaders lazier
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
BUILDMETAINDEX_JARFILE = $(ABS_BUILDTOOLJARDIR)/buildmetaindex.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
######################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
# JRE Image
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
######################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
initial-image-jre-setup:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
	$(RM) -r $(JRE_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
	$(MKDIR) -p $(JRE_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
# 64-bit solaris jre image contains only the 64-bit add-on files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
initial-image-jre-sol64:: initial-image-jre-setup \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
			  $(JRE_LICENSES) $(JRE64_LICENSES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
	@# Use tar instead of cp to preserve the symbolic links
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
	for dir in bin lib ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
	  ( $(CD) $(OUTPUTDIR) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
		$(TAR) cf - `$(FIND) $$dir -name '$(ARCH)' -print` | \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
		($(CD) $(JRE_IMAGE_DIR) && $(TAR) xf -) ) ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
	@# Remove some files from the jre area
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
	for t in $(NOTJRETOOLS) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
	    $(RM) $(JRE_IMAGE_DIR)/bin$(ISA_DIR)/$$t ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
	for l in $(NOTJRELIBS) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
	    $(RM) $(JRE_IMAGE_DIR)/lib/$$l ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
	$(RM) `$(FIND) $(JRE_IMAGE_DIR)/lib -name 'orb.idl'`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
	$(RM) `$(FIND) $(JRE_IMAGE_DIR)/lib -name 'ir.idl'`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
# Construct an initial jre image (initial jdk jre) no trimming or stripping
5381
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   770
# See "initial-image-jdk-setup" for an explanation of the rm of
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   771
# drive names like C:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
initial-image-jre:: initial-image-jre-setup \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
		    $(JRE_LICENSES) $(JRE_DOCFILES) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
		    $(RT_JAR) $(RESOURCES_JAR) $(JSSE_JAR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
		    $(BUILDMETAINDEX_JARFILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
	@# Copy in bin directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
	$(CD) $(OUTPUTDIR) && $(FIND) bin -depth | $(CPIO) -pdum $(JRE_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
	@# CTE plugin security change require new empty directory lib/applet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
	$(MKDIR) -p $(JRE_IMAGE_DIR)/lib/applet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
	@# Copy in lib directory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
	$(CD) $(OUTPUTDIR) && $(FIND) lib -depth | $(CPIO) -pdum $(JRE_IMAGE_DIR)
5381
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   782
  ifeq ($(USING_CYGWIN),true)
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   783
	  $(RM) -rf $(JRE_IMAGE_DIR)/[A-Za-z]:
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   784
	  $(RM) -rf $(OUTPUTDIR)/[A-Za-z]:
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   785
  endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
	@# Make sure all directories are read/execute for everyone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
	$(CHMOD) a+rx `$(FIND) $(JRE_IMAGE_DIR) -type d`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
	@# Remove some files from the jre area
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
	for t in $(NOTJRETOOLS) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
	    $(RM) $(JRE_IMAGE_DIR)/bin$(ISA_DIR)/$$t ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
	for l in $(NOTJRELIBS) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
	    $(RM) $(JRE_IMAGE_DIR)/lib/$$l ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
	@# Remove orb.idl and ir.idl from jre
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
	$(FIND) $(JRE_IMAGE_DIR)/lib -name 'orb.idl' -exec $(RM) \{} \;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
	$(FIND) $(JRE_IMAGE_DIR)/lib -name 'ir.idl' -exec $(RM) \{} \;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
	@# Copy in rt.jar & resources.jar file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
	$(CP) $(RT_JAR) $(JRE_IMAGE_DIR)/lib/rt.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
	$(CP) $(RESOURCES_JAR) $(JRE_IMAGE_DIR)/lib/resources.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
	$(CP) $(JSSE_JAR) $(JRE_IMAGE_DIR)/lib/jsse.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
	@# Generate meta-index to make boot and extension class loaders lazier
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
	$(CD) $(JRE_IMAGE_DIR)/lib && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
	    $(BOOT_JAVA_CMD) -jar $(BUILDMETAINDEX_JARFILE) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
		-o meta-index *.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
	@$(CD) $(JRE_IMAGE_DIR)/lib && $(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
	$(CD) $(JRE_IMAGE_DIR)/lib/ext && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
	    $(BOOT_JAVA_CMD) -jar $(BUILDMETAINDEX_JARFILE) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
		-o meta-index *.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
	@$(CD) $(JRE_IMAGE_DIR)/lib/ext && $(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
	@# Remove certain *.lib files
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
	$(CD) $(JRE_IMAGE_DIR)/lib && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
            $(RM) java.$(LIB_SUFFIX) jvm.$(LIB_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                  hpi.$(LIB_SUFFIX) awt.$(LIB_SUFFIX) jawt.$(LIB_SUFFIX)
3111
fefdeafb7ab9 6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents: 2763
diff changeset
   816
  ifeq ($(ARCH_DATA_MODEL), 32)
fefdeafb7ab9 6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents: 2763
diff changeset
   817
	@# The Java Kernel JRE image ships with a special VM.  It is not included
fefdeafb7ab9 6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents: 2763
diff changeset
   818
	@# in the full JRE image, so remove it.  Also, is it only for 32-bit windows.
fefdeafb7ab9 6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents: 2763
diff changeset
   819
	$(CD) $(JRE_IMAGE_DIR)/bin && $(RM) -r kernel
fefdeafb7ab9 6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents: 2763
diff changeset
   820
  endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
endif # Windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
ifneq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
	$(call copy-man-pages,$(JRE_IMAGE_DIR),$(JRE_MAN_PAGES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
endif # !windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
# Trim out any extra files not for the jre shipment but wanted in the jdk jre.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
#   (Note the jdk WILL want the jre image before this trimming)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
#   Removes server VM on Windows 32bit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
#   Remove certain shared libraries that should not be in the jre image
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
#      but should be in the jdk jre image.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
trim-image-jre::
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
  ifeq ($(ARCH_DATA_MODEL), 32)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
	$(RM) -r $(JRE_IMAGE_DIR)/bin/server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
  ifdef NOTJRE_SHARED_LIBS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
	for l in $(NOTJRE_SHARED_LIBS) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
	    $(RM) $(JRE_IMAGE_DIR)/bin/$$l ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
	done ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
else # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
  ifdef NOTJRE_SHARED_LIBS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
	for l in $(NOTJRE_SHARED_LIBS) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
	    $(RM) $(JRE_IMAGE_DIR)/lib/$(LIBARCH)/$$l ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
	done ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
# Get list of all Elf files in the jre
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
JRE_ELF_LIST=$(TEMPDIR)/jre-elf-files.list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
$(JRE_ELF_LIST):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
ifneq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
	$(RM) $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
	$(FIND) $(JRE_IMAGE_DIR)/lib -type f -name \*.$(LIB_SUFFIX) >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
	$(FILE) `$(FIND) $(JRE_IMAGE_DIR)/bin -type f -name \*$(EXE_SUFFIX)` \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
	    | $(EGREP) 'ELF' | $(CUT) -d':' -f1 >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
# Post process the image (strips and mcs on Elf files we are shipping)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
#   (Note the jdk WILL want the jre image before this processing)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
process-image-jre:: $(JRE_ELF_LIST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
ifneq ($(POST_STRIP_PROCESS), )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
	for f in `$(CAT) $(JRE_ELF_LIST)`; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
	  $(CHMOD) u+w $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
	  $(ECHO) $(POST_STRIP_PROCESS) $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
	  $(POST_STRIP_PROCESS) $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
	  $(CHMOD) go-w $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
ifneq ($(POST_MCS_PROCESS), )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
	for f in `$(CAT) $(JRE_ELF_LIST)`; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
	  $(CHMOD) u+w $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
	  $(ECHO) $(POST_MCS_PROCESS) $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
	  $(POST_MCS_PROCESS) $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
	  $(CHMOD) go-w $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
	$(RM) $(JRE_ELF_LIST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
######################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
# JDK Image
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
######################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
# Note: cpio ($(CPIO)) sometimes leaves directories without rx access.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
5381
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   885
# REMIND: the $(RM) calls for patterns like c:, d: following $(CPIO)
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   886
# are because the 1.7.x versions of cygwin's cpio command drops these
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   887
# in the working directory if the output path begins with that pattern
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   888
# The one for the output jre subdirectory gets there because cpio sees its
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   889
# own dropping in the input jre subdirectory. Need to remove both of these.
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   890
# We can remove these RM's if someone figures out how to stop cpio from
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   891
# leaving these there.
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   892
# Note that its a real problem not because this directory can end up in the
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   893
# bundle (I think it won't since it not in bin or lib and those are the
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   894
# only places from which we copy everything), but because the presence
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   895
# of this file causes cygwin's find to bomb out, thus breaking the build
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   896
# in "install".
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
initial-image-jdk-setup:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
	$(RM) -r $(JDK_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
	$(MKDIR) -p $(JDK_IMAGE_DIR)/jre
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
	($(CD) $(JRE_IMAGE_DIR) && $(FIND) . -depth -print \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
	      | $(CPIO) -pdum $(JDK_IMAGE_DIR)/jre )
5381
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   902
  ifeq ($(USING_CYGWIN),true)
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   903
	  $(RM) -rf $(JRE_IMAGE_DIR)/[A-Za-z]:
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   904
	  $(RM) -rf $(JDK_IMAGE_DIR)/jre/[A-Za-z]:
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   905
  endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
	$(RM) -rf $(JDK_IMAGE_DIR)/jre/man
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
	$(CHMOD) a+rx `$(FIND) $(JDK_IMAGE_DIR) -type d`
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
initial-image-jdk64-bindemos:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
	for dir in bin demo ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
	  ( $(CD) $(OUTPUTDIR) && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
		$(TAR) cf - `$(FIND) $$dir -name '$(LIBARCH)' -print` | \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
		($(CD) $(JDK_IMAGE_DIR) && $(TAR) xf -) ) ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
# Solaris 64 bit image is special
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
initial-image-jdk-sol64:: initial-image-jdk-setup \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
			  initial-image-jdk64-bindemos \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
			  $(JDK_LICENSES) $(JDK64_LICENSES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
# DB files to add
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
ifdef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
initial-image-jdk-db:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
# Create the list of db *.zip files to bundle with jdk
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
ABS_DB_PATH  :=$(call FullPath,$(CLOSED_SHARE_SRC)/db)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
DB_ZIP_LIST = $(shell $(LS) $(ABS_DB_PATH)/*.zip 2>/dev/null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
initial-image-jdk-db: $(DB_ZIP_LIST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
	$(MKDIR) -p $(JDK_IMAGE_DIR)/db
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
	for d in $(DB_ZIP_LIST); do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
          ($(CD) $(JDK_IMAGE_DIR)/db && $(UNZIP) -o $$d); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
# Standard jdk image
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
initial-image-jdk:: initial-image-jdk-setup \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
		    initial-image-jdk-db \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
		    $(JDK_LICENSES) $(JDK_DOCFILES)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
	$(MKDIR) $(JDK_IMAGE_DIR)/lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
	@# Copy in the jars in lib that only belong in the JDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
	for l in $(NOTJRELIBS); do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
	    if [ -r $(LIBDIR)/$$l ]; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
	        $(CP) $(LIBDIR)/$$l $(JDK_IMAGE_DIR)/lib; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
	    fi; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
  ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
	@# lib/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
	$(CP) $(LIBDIR)/$(LIB_PREFIX)jvm.$(LIB_SUFFIX) $(JDK_IMAGE_DIR)/lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
	$(CP) $(LIBDIR)/$(LIB_PREFIX)jawt.$(LIB_SUFFIX) $(JDK_IMAGE_DIR)/lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
	@# bin/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
	@# copy all EXE files and only certain DLL files from BINDIR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
	$(MKDIR) -p $(JDK_IMAGE_DIR)/bin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
	$(CP) $(BINDIR)/*$(EXE_SUFFIX) $(JDK_IMAGE_DIR)/bin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
	$(CP) $(BINDIR)/jli.$(LIBRARY_SUFFIX) $(JDK_IMAGE_DIR)/bin
5381
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   966
    ifeq ($(COMPILER_VERSION), VS2010)
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   967
	$(CP) $(BINDIR)/msvc*100.$(LIBRARY_SUFFIX) $(JDK_IMAGE_DIR)/bin
d6d64a42ff51 6931180: Migration to recent versions of MS Platform SDK
prr
parents: 4115
diff changeset
   968
    endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
    ifeq ($(ARCH_DATA_MODEL), 32)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
      ifeq ($(COMPILER_VERSION), VS2003)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
	$(CP) $(BINDIR)/msvc*71.$(LIBRARY_SUFFIX) $(JDK_IMAGE_DIR)/bin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
      endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
    endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
  else # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
	@# bin/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
	($(CD) $(BINDIR)/.. && $(TAR) cf - \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
	    `$(FIND) bin \( -type f -o -type l \) -print `) | \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
	    ($(CD) $(JDK_IMAGE_DIR) && $(TAR) xf -)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
  endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
	@# files that might not exist need to be touched.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
	$(TOUCH) $(CLASSBINDIR)/META-INF/services/com.sun.tools.xjc.Plugin
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
	@# lib/tools.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
	@#
3057
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   989
	$(CD) $(CLASSBINDIR) && \
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   990
	    $(BOOT_JAR_CMD) c0f $(ABS_LIBDIR)/tools.jar \
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   991
	        $(TOOLS) $(BOOT_JAR_JFLAGS)
c5b370763c63 6853806: Prefer (cd $dir && jar) to jar -C for performance reasons
martin
parents: 2939
diff changeset
   992
	@$(CD) $(CLASSBINDIR) && $(java-vm-cleanup)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
	$(CP) $(LIBDIR)/tools.jar $(JDK_IMAGE_DIR)/lib/tools.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
	@# lib/ct.sym
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
	$(MKDIR) -p $(OUTPUTDIR)/symbols/META-INF/sym
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
	$(JAVAC_CMD) -XDprocess.packages -proc:only \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
	    -processor com.sun.tools.javac.sym.CreateSymbols \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
	    -Acom.sun.tools.javac.sym.Jar=$(RT_JAR) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
	    -Acom.sun.tools.javac.sym.Dest=$(OUTPUTDIR)/symbols/META-INF/sym/rt.jar \
5789
246b84dc50d9 6960789: com.sun.servicetag API needs to be added in ct.sym
mchung
parents: 5506
diff changeset
  1002
	    $(CORE_PKGS) $(NON_CORE_PKGS) $(EXCLUDE_PROPWARN_PKGS) $(EXPORTED_PRIVATE_PKGS)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
	$(BOOT_JAR_CMD) c0f $(LIBDIR)/ct.sym \
916
867515b155b5 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 715
diff changeset
  1004
	    -C $(OUTPUTDIR)/symbols META-INF $(BOOT_JAR_JFLAGS)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
	$(CP) $(LIBDIR)/ct.sym $(JDK_IMAGE_DIR)/lib/ct.sym
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
	@# CORBA supported orb.idl and ir.idl should be copied to lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
	$(CP) $(LIBDIR)/orb.idl $(JDK_IMAGE_DIR)/lib/orb.idl
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
	$(CP) $(LIBDIR)/ir.idl $(JDK_IMAGE_DIR)/lib/ir.idl
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
  ifeq ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
	@# on Linux copy jexec from jre/lib to /lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
	$(CP) $(LIBDIR)/jexec $(JDK_IMAGE_DIR)/lib/jexec
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
  endif # PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
	@# src.zip
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
	$(MKDIR) -p $(JDK_IMAGE_DIR)/src
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
	@# The '*-*' pattern in the find command excludes files named with dashes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
	@# such as the java.nio templates for generated classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
	@# The Linux 'tar' command cannot handle the huge command line argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
	@# generated by the more efficient solaris/windows method of copying files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
	@# So for Linux, make use of the -T option (like Solaris' -I option) of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
	@# obtaining the list of files from a file. MKS tar has no such option.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
  ifeq ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
	for d in $(SOURCE_DIRS); do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
	  $(RM) $(ABS_TEMPDIR)/src-files.list; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
	  ($(CD) $$d &&  \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
	    for sd in $(SOURCES) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
              if [ -d $$sd ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
	        $(FIND) $$sd $(SOURCE_FILES_filter) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
		        -name '*.java' -print \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
		        >> $(ABS_TEMPDIR)/src-files.list ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
	      fi; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
	    done ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
	  ) ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
	  if [ -f  $(ABS_TEMPDIR)/src-files.list ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
	    ($(CD) $$d && $(TAR) cf - -T $(ABS_TEMPDIR)/src-files.list ) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
	       | ($(CD) $(JDK_IMAGE_DIR)/src && $(TAR) xf -); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
	  fi; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
  else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
	for d in $(SOURCE_DIRS); do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
	  $(RM) $(ABS_TEMPDIR)/src-files.list; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
	  ($(CD) $$d && \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
	    for sd in $(SOURCES) ; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
              if [ -d $$sd ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
	        $(FIND) $$sd $(SOURCE_FILES_filter) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
		        -name '*.java' -print \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
		        >> $(ABS_TEMPDIR)/src-files.list ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
	      fi; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
	    done ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
	  ) ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
	  if [ -f  $(ABS_TEMPDIR)/src-files.list ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
	    ($(CD) $$d && $(TAR) cf - `$(CAT) $(ABS_TEMPDIR)/src-files.list`) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
	      | ($(CD) $(JDK_IMAGE_DIR)/src && $(TAR) xf -); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
	  fi; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
	$(RM) $(ABS_TEMPDIR)/src-files.list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
	$(CHMOD) -R +w $(JDK_IMAGE_DIR)/src
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
	$(MKDIR) -p $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
	$(CP) $(SHARE_SRC)/bin/java.c $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
	$(CP) $(SHARE_SRC)/bin/java.h $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
	$(CP) $(SHARE_SRC)/bin/manifest_info.h $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
	$(CP) $(SHARE_SRC)/bin/parse_manifest.c $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
	$(CP) $(SHARE_SRC)/bin/version_comp.c $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
	$(CP) $(SHARE_SRC)/bin/version_comp.h $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
	$(CP) $(SHARE_SRC)/bin/wildcard.h $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
	$(CP) $(SHARE_SRC)/bin/wildcard.c $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
	$(CP) $(SHARE_SRC)/bin/jli_util.h $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
	$(CP) $(SHARE_SRC)/bin/jli_util.c $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
	$(CP) $(SHARE_SRC)/bin/splashscreen_stubs.c $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
	$(CP) $(SHARE_SRC)/bin/splashscreen.h $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
	$(CP) $(PLATFORM_SRC)/bin/java_md.c $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
	$(CP) $(PLATFORM_SRC)/bin/java_md.h $(JDK_IMAGE_DIR)/src/launcher
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
	$(CD) $(JDK_IMAGE_DIR)/src && $(ZIPEXE) -qr ../src.zip *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
	$(RM) -r $(JDK_IMAGE_DIR)/src
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
	@# demo, include
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
	$(CP) -r -f $(DEMODIR) $(JDK_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
	$(CP) -r -f $(SAMPLEDIR) $(JDK_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
	$(CP) -r $(INCLUDEDIR) $(JDK_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
	@# Swing BeanInfo generation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
	@#
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
	$(CD) javax/swing/beaninfo && $(MAKE) swing-1.2-beans
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
ifneq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
	$(call copy-man-pages,$(JDK_IMAGE_DIR),$(JDK_MAN_PAGES))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
endif # !windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
# Trim out files we don't want to ship
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
trim-image-jdk::
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
	@# Remove tools that should not be part of SDK.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
	for t in $(NOTJDKTOOLS); do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
	    $(RM) $(JDK_IMAGE_DIR)/bin/$${t}$(EXE_SUFFIX) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
		  $(JDK_IMAGE_DIR)/bin/*/native_threads/$${t}$(EXE_SUFFIX); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
# Get list of Elf files in the jdk
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
JDK_ELF_LIST=$(TEMPDIR)/jdk-elf-files.list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
$(JDK_ELF_LIST):
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
ifneq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
	$(RM) $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
	$(FIND) $(JDK_IMAGE_DIR)/jre/lib -type f -name \*.$(LIB_SUFFIX) >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
	$(FILE) `$(FIND) $(JDK_IMAGE_DIR)/jre/bin -type f -name \*$(EXE_SUFFIX)` \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
	    | $(EGREP) 'ELF' | $(CUT) -d':' -f1 >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
	file `$(FIND) $(JDK_IMAGE_DIR)/bin -type f -name \*$(EXE_SUFFIX)` \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
	    | $(EGREP) 'ELF' | $(CUT) -d':' -f1 >> $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
# Post process the image (strips and mcs on files we are shipping)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
process-image-jdk:: $(JDK_ELF_LIST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
ifneq ($(POST_STRIP_PROCESS), )
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
	for f in `$(CAT) $(JDK_ELF_LIST)`; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
	  $(CHMOD) u+w $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
	  $(ECHO) $(POST_STRIP_PROCESS) $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
	  $(POST_STRIP_PROCESS) $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
	  $(CHMOD) go-w $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
ifneq ($(POST_MCS_PROCESS), )
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
	for f in `$(CAT) $(JDK_ELF_LIST)`; do \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
	  $(CHMOD) u+w $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
	  $(ECHO) $(POST_MCS_PROCESS) $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
	  $(POST_MCS_PROCESS) $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
	  $(CHMOD) go-w $${f}; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
	done
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
	$(RM) $(JDK_ELF_LIST)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
###################################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
# What do we compare against
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
###################################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
# The temporary files and areas created
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
TEMP_PREV_JRE_BASE_DIR=$(TEMPDIR)/previous_jre
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
TEMP_PREV_JDK_BASE_DIR=$(TEMPDIR)/previous_jdk
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
TEMP_PREV_JRE_COMPARISON=$(TEMP_PREV_JRE_BASE_DIR)/previous_jre_comparison.txt
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
TEMP_PREV_JDK_COMPARISON=$(TEMP_PREV_JDK_BASE_DIR)/previous_jdk_comparison.txt
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
TEMP_PREV_JRE_IMAGE_DIR=$(TEMP_PREV_JRE_BASE_DIR)/jre$(PREVIOUS_JDK_VERSION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
TEMP_PREV_JDK_IMAGE_DIR=$(TEMP_PREV_JDK_BASE_DIR)/jdk$(PREVIOUS_JDK_VERSION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
# unbundle(sourcedir,bundlename,destdir)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
#    logic is slightly different if a .tar.gz file (linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
define unbundle
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
$(RM) -r $3
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
$(MKDIR) -p $3
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
$(CP) $1 $3
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
if [ "`$(BASENAME) $2 .gz`" != "$2" ] ; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
  ( $(CD) $3 && ( $(GUNZIP) -dc $2 | $(TAR) xf - ) && $(RM) $2 ); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
else \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
  ( $(CD) $3 && $(TAR) xf $2 && $(RM) $2 ); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
( $(CD) $3 && $(RM) $2 )
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
endef
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
# In general, ignore the fastdebug tree, and changes in the demo and sample area
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
COMPARE_FILTER = | $(EGREP) -v /fastdebug/ | $(EGREP) -v /demo/ | $(EGREP) -v /sample/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
# If a previuous image is provided, no need to install it.
916
867515b155b5 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 715
diff changeset
  1168
ifdef PREVIOUS_RELEASE_IMAGE
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
  # Just use the pre-installed images
916
867515b155b5 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 715
diff changeset
  1171
  PREV_JRE_IMAGE_DIR=$(PREVIOUS_RELEASE_IMAGE)/jre
867515b155b5 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 715
diff changeset
  1172
  PREV_JDK_IMAGE_DIR=$(PREVIOUS_RELEASE_IMAGE)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
  # Use the temp images we will create
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
  PREV_JRE_IMAGE_DIR=$(TEMP_PREV_JRE_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
  PREV_JDK_IMAGE_DIR=$(TEMP_PREV_JDK_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
# Force the installation in this case
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
compare-image:: install-previous-sanity install-previous-jre install-previous-jdk
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
# Unbundle the jre
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
$(TEMP_PREV_JRE_IMAGE_DIR)/bin/java$(EXE_SUFFIX): $(PREVIOUS_JRE_BUNDLE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
	$(call unbundle,$(PREVIOUS_JRE_BUNDLE),$(PREVIOUS_JRE_FILE),$(TEMP_PREV_JRE_BASE_DIR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
	$(TOUCH) $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
# Unbundle the jdk
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
$(TEMP_PREV_JDK_IMAGE_DIR)/bin/java$(EXE_SUFFIX): $(PREVIOUS_JDK_BUNDLE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
	$(call unbundle,$(PREVIOUS_JDK_BUNDLE),$(PREVIOUS_JDK_FILE),$(TEMP_PREV_JDK_BASE_DIR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
	$(TOUCH) $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
# Make sure all images have a java in them (used as the touch file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
install-previous-sanity:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
	@if [ ! -f $(PREVIOUS_JRE_BUNDLE) ]; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
          $(ECHO) "ERROR: You do not have access to the previous java release jre bundles. \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
            "      Please check your access to \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
            "          $(PREVIOUS_JRE_BUNDLE) \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
            "      and/or check your value of ALT_PREVIOUS_RELEASE_PATH or ALT_PREVIOUS_JRE_FILE \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
            "      This will affect you if you build the images target. \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
            "" >> $(ERROR_FILE) ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
	@if [ ! -f $(PREVIOUS_JDK_BUNDLE) ]; then \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
          $(ECHO) "ERROR: You do not have access to the previous java release sdk bundles. \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
          "      Please check your access to \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
          "          $(PREVIOUS_sdk_BUNDLE) \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
          "      and/or check your value of ALT_PREVIOUS_RELEASE_PATH or ALT_PREVIOUS_JDK_FILE. \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
          "      This will affect you if you build the images target. \n" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
          "" >> $(ERROR_FILE) ; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
	fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
install-previous-jre: $(PREV_JRE_IMAGE_DIR)/bin/java$(EXE_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
install-previous-jdk: $(PREV_JDK_IMAGE_DIR)/bin/java$(EXE_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
# Create the jre comparison report
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
$(TEMP_PREV_JRE_COMPARISON): install-previous-jre $(DIRDIFF_JARFILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
	$(BOOT_JAVA_CMD) -jar $(DIRDIFF_JARFILE) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
	   $(PREV_JRE_IMAGE_DIR) $(JRE_IMAGE_DIR) | $(SORT) > $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
# Create the jdk comparison report
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
$(TEMP_PREV_JDK_COMPARISON): install-previous-jdk $(DIRDIFF_JARFILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
	$(prep-target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
	$(BOOT_JAVA_CMD) -jar $(DIRDIFF_JARFILE) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
	   $(PREV_JDK_IMAGE_DIR) $(JDK_IMAGE_DIR) | $(SORT) > $@
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
# Clean up names in the messages printed out
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
CAT_FILTER = $(SED) -e "s@$(JDK_IMAGE_DIR)@JDK_IMAGE@g" \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
	            -e "s@$(JRE_IMAGE_DIR)@JRE_IMAGE@g"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
# Report on the jre image comparison
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
compare-image-jre: $(TEMP_PREV_JRE_COMPARISON)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
	@$(ECHO) "JRE Image Comparison to version $(PREVIOUS_JDK_VERSION)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
	@$(ECHO) "  Previous: $(PREV_JRE_IMAGE_DIR)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
	@$(ECHO) "  Current:  $(JRE_IMAGE_DIR)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
	@$(CAT) $< $(COMPARE_FILTER) | $(CAT_FILTER)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
	( $(ECHO) " " ; $(CAT) $< | $(CAT_FILTER) ; $(ECHO) " " ) >> $(WARNING_FILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
# Report on the jdk image comparison
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
compare-image-jdk: $(TEMP_PREV_JDK_COMPARISON)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
	@$(ECHO) "JDK Image Comparison to version $(PREVIOUS_JDK_VERSION)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
	@$(ECHO) "  Previous: $(PREV_JDK_IMAGE_DIR)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
	@$(ECHO) "  Current:  $(JDK_IMAGE_DIR)"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
	$(CAT) $< $(COMPARE_FILTER) | $(CAT_FILTER)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
	( $(ECHO) " " ; $(CAT) $< | $(CAT_FILTER) ; $(ECHO) " " ) >> $(WARNING_FILE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
# Do both image comparisons
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
compare-image:: compare-image-jre compare-image-jdk
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
# Clean up any temp images and reports
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
compare-image-clobber:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
	$(RM) -r $(TEMP_PREV_JRE_BASE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
	$(RM) -r $(TEMP_PREV_JDK_BASE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
######################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
# clobber
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
######################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
images-clobber::
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
	$(RM) -r $(REORDER_TEMPDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
	$(RM) -r $(JARFILELISTS_TEMPDIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
ifeq ($(ARCH_DATA_MODEL), 32)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
	$(CD) javax/swing/beaninfo && $(MAKE) swingbeans.clobber
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
	$(RM) -r $(CLASSBINDIR)/META-INF
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
	$(RM) $(TEMPDIR)/tmp.jar
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
ifeq ($(PLATFORM), linux)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
	$(RM) -r $(OUTPUTDIR)/$(ARCH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
ifeq ($(PLATFORM), windows)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
	$(RM) $(TEMPDIR)/rebase.input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
	$(RM) -r $(JDK_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
	$(RM) -r $(JRE_IMAGE_DIR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
images images-clobber::
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
	@$(ECHO) ">>>Finished making "$@" @ `$(DATE)` ..."
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
	@$(java-vm-cleanup)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
.PHONY: images image-jre image-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
	initial-image-jre initial-image-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
	initial-image-jre-sol64 initial-image-jdk-sol64 \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
        initial-image-jdk-setup \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
	initial-image-jdk-db \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
        initial-image-jdk64-bindemos \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
        initial-image-jre-setup \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
	trim-image-jre trim-image-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
	process-image-jre process-image-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
	install-previous-jre install-previous-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
	compare-image-jre compare-image-jdk \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
	compare-image compare-image-clobber \
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
	images-clobber
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
# Force rule
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
FRC:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298