author | duke |
Wed, 05 Jul 2017 20:05:20 +0200 | |
changeset 27220 | 315d620f5726 |
parent 26191 | a0ff4b39d34b |
permissions | -rw-r--r-- |
14231 | 1 |
# |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
21805
diff
changeset
|
2 |
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. |
14231 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
include $(SPEC) |
|
27 |
include MakeBase.gmk |
|
28 |
||
29 |
default: bundles |
|
30 |
||
31 |
# Only macosx has bundles defined. |
|
32 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
33 |
||
20547 | 34 |
bundles: jre-bundle jdk-bundle |
14231 | 35 |
|
20547 | 36 |
# JDK_BUNDLE_DIR and JRE_BUNDLE_DIR are defined in SPEC. |
14231 | 37 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
38 |
MACOSX_PLIST_SRC := $(JDK_TOPDIR)/make/data/bundle |
14231 | 39 |
|
20547 | 40 |
# All these OPENJDK checks are needed since there is no coherency between |
41 |
# these values in open and closed. Should probably be fixed. |
|
42 |
ifndef OPENJDK |
|
14231 | 43 |
BUNDLE_ID := $(MACOSX_BUNDLE_ID_BASE).$(JDK_MINOR_VERSION)u$(JDK_UPDATE_VERSION) |
20547 | 44 |
else |
14231 | 45 |
BUNDLE_ID := $(MACOSX_BUNDLE_ID_BASE) |
20547 | 46 |
endif |
47 |
BUNDLE_ID_JRE := $(BUNDLE_ID).jre |
|
48 |
BUNDLE_ID_JDK := $(BUNDLE_ID).jdk |
|
14231 | 49 |
|
20547 | 50 |
BUNDLE_NAME := $(MACOSX_BUNDLE_NAME_BASE) $(JDK_MINOR_VERSION) |
51 |
BUNDLE_NAME_JRE := $(BUNDLE_NAME) |
|
52 |
BUNDLE_NAME_JDK := $(BUNDLE_NAME) |
|
14231 | 53 |
|
20547 | 54 |
ifndef OPENJDK |
14231 | 55 |
BUNDLE_INFO := $(MACOSX_BUNDLE_NAME_BASE) $(JDK_VERSION) |
20547 | 56 |
else |
14231 | 57 |
BUNDLE_INFO := $(MACOSX_BUNDLE_NAME_BASE) ($(JDK_VERSION)) |
20547 | 58 |
endif |
59 |
BUNDLE_INFO_JRE := $(BUNDLE_INFO) |
|
60 |
BUNDLE_INFO_JDK := $(BUNDLE_INFO) |
|
14231 | 61 |
|
20547 | 62 |
BUNDLE_PLATFORM_VERSION := $(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION) |
63 |
BUNDLE_VERSION := $(JDK_VERSION) |
|
64 |
ifeq ($(COMPANY_NAME), N/A) |
|
14231 | 65 |
BUNDLE_VENDOR := UNDEFINED |
20547 | 66 |
else |
14231 | 67 |
BUNDLE_VENDOR := $(COMPANY_NAME) |
20547 | 68 |
endif |
14231 | 69 |
|
70 |
||
20547 | 71 |
JDK_FILE_LIST := $(shell $(FIND) $(JDK_IMAGE_DIR)) |
72 |
JRE_FILE_LIST := $(shell $(FIND) $(JRE_IMAGE_DIR)) |
|
14231 | 73 |
|
20547 | 74 |
JDK_TARGET_LIST := $(subst $(JDK_IMAGE_DIR)/,$(JDK_BUNDLE_DIR)/Home/,$(JDK_FILE_LIST)) |
75 |
JRE_TARGET_LIST := $(subst $(JRE_IMAGE_DIR)/,$(JRE_BUNDLE_DIR)/Home/,$(JRE_FILE_LIST)) |
|
14231 | 76 |
|
20547 | 77 |
# Copy empty directories (jre/lib/applet). |
78 |
$(JDK_BUNDLE_DIR)/Home/%: $(JDK_IMAGE_DIR)/% |
|
14231 | 79 |
$(ECHO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
80 |
$(MKDIR) -p $(@D) |
|
24700
a646a5fa8e27
8044480: JDK image target overwrites lib/server/libjsig.dylib symlink with a copy of lib/libjsig.dylib
erikj
parents:
23010
diff
changeset
|
81 |
if [ -d "$<" ]; then $(MKDIR) -p $@; else $(CP) -f -R -P '$<' '$@'; fi |
14231 | 82 |
|
20547 | 83 |
$(JRE_BUNDLE_DIR)/Home/%: $(JRE_IMAGE_DIR)/% |
14231 | 84 |
$(ECHO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
85 |
$(MKDIR) -p $(@D) |
|
24700
a646a5fa8e27
8044480: JDK image target overwrites lib/server/libjsig.dylib symlink with a copy of lib/libjsig.dylib
erikj
parents:
23010
diff
changeset
|
86 |
if [ -d "$<" ]; then $(MKDIR) -p $@; else $(CP) -f -R -P '$<' '$@'; fi |
14231 | 87 |
|
20547 | 88 |
$(JDK_BUNDLE_DIR)/MacOS/libjli.dylib: |
14231 | 89 |
$(ECHO) Creating link $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
90 |
$(MKDIR) -p $(@D) |
|
91 |
$(RM) $@ |
|
15135
3ea5d7852acc
8005903: build-infra: bad symlink: j2sdk-bundle/jdk1.8.0.jdk/Contents/MacOS/libjli.dylib
erikj
parents:
15129
diff
changeset
|
92 |
$(LN) -s ../Home/jre/lib/jli/libjli.dylib $@ |
14231 | 93 |
|
20547 | 94 |
$(JRE_BUNDLE_DIR)/MacOS/libjli.dylib: |
14231 | 95 |
$(ECHO) Creating link $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
96 |
$(MKDIR) -p $(@D) |
|
97 |
$(RM) $@ |
|
98 |
$(LN) -s ../Home/lib/jli/libjli.dylib $@ |
|
99 |
||
20547 | 100 |
$(JDK_BUNDLE_DIR)/Info.plist: $(SPEC) |
14231 | 101 |
$(ECHO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
102 |
$(MKDIR) -p $(@D) |
|
20547 | 103 |
$(SED) -e "s/@@ID@@/$(BUNDLE_ID_JDK)/g" \ |
104 |
-e "s/@@NAME@@/$(BUNDLE_NAME_JDK)/g" \ |
|
105 |
-e "s/@@INFO@@/$(BUNDLE_INFO_JDK)/g" \ |
|
106 |
-e "s/@@PLATFORM_VERSION@@/$(BUNDLE_PLATFORM_VERSION)/g" \ |
|
107 |
-e "s/@@VERSION@@/$(BUNDLE_VERSION)/g" \ |
|
108 |
-e "s/@@VENDOR@@/$(BUNDLE_VENDOR)/g" \ |
|
25859 | 109 |
< $(MACOSX_PLIST_SRC)/JDK-Info.plist > $@ |
14231 | 110 |
|
20547 | 111 |
$(JRE_BUNDLE_DIR)/Info.plist: $(SPEC) |
14231 | 112 |
$(ECHO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
113 |
$(MKDIR) -p $(@D) |
|
20547 | 114 |
$(SED) -e "s/@@ID@@/$(BUNDLE_ID_JRE)/g" \ |
115 |
-e "s/@@NAME@@/$(BUNDLE_NAME_JRE)/g" \ |
|
116 |
-e "s/@@INFO@@/$(BUNDLE_INFO_JRE)/g" \ |
|
117 |
-e "s/@@PLATFORM_VERSION@@/$(BUNDLE_PLATFORM_VERSION)/g" \ |
|
118 |
-e "s/@@VERSION@@/$(BUNDLE_VERSION)/g" \ |
|
119 |
-e "s/@@VENDOR@@/$(BUNDLE_VENDOR)/g" \ |
|
25859 | 120 |
< $(MACOSX_PLIST_SRC)/JRE-Info.plist > $@ |
14231 | 121 |
|
20547 | 122 |
jdk-bundle: $(JDK_TARGET_LIST) $(JDK_BUNDLE_DIR)/MacOS/libjli.dylib \ |
123 |
$(JDK_BUNDLE_DIR)/Info.plist |
|
14231 | 124 |
$(SETFILE) -a B $(dir $(JDK_BUNDLE_DIR)) |
125 |
||
20547 | 126 |
jre-bundle: $(JRE_TARGET_LIST) $(JRE_BUNDLE_DIR)/MacOS/libjli.dylib \ |
127 |
$(JRE_BUNDLE_DIR)/Info.plist |
|
14231 | 128 |
$(SETFILE) -a B $(dir $(JRE_BUNDLE_DIR)) |
129 |
||
130 |
else # Not macosx |
|
131 |
||
20547 | 132 |
bundles: |
14231 | 133 |
$(ECHO) "No bundles defined for $(OPENJDK_TARGET_OS)" |
134 |
||
135 |
endif # macosx |
|
136 |
||
137 |
.PHONY: jdk-bundle jre-bundle bundles |