author | duke |
Wed, 05 Jul 2017 18:38:07 +0200 | |
changeset 15344 | 336fa3a47297 |
parent 15139 | 3ec04e4fbb5e |
child 15677 | e0ab6fb02225 |
child 15680 | d379c4f7bb47 |
permissions | -rw-r--r-- |
13164 | 1 |
# |
2 |
# Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. |
|
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 |
default: all |
|
27 |
||
28 |
include $(SPEC) |
|
29 |
include MakeBase.gmk |
|
30 |
||
31 |
####### |
|
32 |
||
33 |
IMPORT_TARGET_FILES := |
|
34 |
||
35 |
IMPORT_CLASSES := CORBA JAXP JAXWS LANGTOOLS |
|
36 |
IMPORT_SOURCES := CORBA JAXP JAXWS LANGTOOLS |
|
37 |
# Only Corba has binaries |
|
38 |
IMPORT_BINARIES := CORBA |
|
39 |
||
40 |
####### |
|
41 |
||
42 |
# Put the libraries here. Different locations for different target apis. |
|
43 |
ifeq ($(OPENJDK_TARGET_OS_API),posix) |
|
13702 | 44 |
INSTALL_LIBRARIES_HERE:=$(JDK_OUTPUTDIR)/lib$(OPENJDK_TARGET_CPU_LIBDIR) |
45 |
HOTSPOT_LIB_DIR:=$(HOTSPOT_DIST)/jre/lib$(OPENJDK_TARGET_CPU_LIBDIR) |
|
13164 | 46 |
else |
47 |
INSTALL_LIBRARIES_HERE:=$(JDK_OUTPUTDIR)/bin |
|
48 |
HOTSPOT_LIB_DIR:=$(HOTSPOT_DIST)/jre/bin |
|
49 |
endif |
|
50 |
||
51 |
####### |
|
52 |
||
53 |
# |
|
54 |
# jar xf/unzip fails when executing them all in parallel |
|
55 |
# introduce artificial dependency (_DEP) buuhhh |
|
56 |
||
57 |
define ImportClasses |
|
58 |
$1_CLASSES_DEP := $$(IMPORT_TARGET_CLASSES) |
|
59 |
IMPORT_TARGET_CLASSES += $(JDK_OUTPUTDIR)/classes/_the.$1.classes.imported |
|
60 |
||
61 |
$(JDK_OUTPUTDIR)/classes/_the.$1.classes.imported : $$($1_DIST)/lib/classes.jar $$($1_CLASSES_DEP) |
|
62 |
$(ECHO) Importing $1 classes.jar |
|
63 |
$(MKDIR) -p $$(@D) |
|
13702 | 64 |
$(RM) $$@ $$@.tmp |
13164 | 65 |
($(CD) $$(@D) && $(JAR) xvf $$< > $$@.tmp) |
66 |
$(MV) $$@.tmp $$@ |
|
67 |
endef |
|
68 |
||
69 |
define ImportSources |
|
70 |
$1_SOURCES_DEP := $$(IMPORT_TARGET_SOURCES) |
|
71 |
IMPORT_TARGET_SOURCES += $(JDK_OUTPUTDIR)/impsrc/_the.$1.src.imported |
|
72 |
||
73 |
$(JDK_OUTPUTDIR)/impsrc/_the.$1.src.imported : $$($1_DIST)/lib/src.zip $$($1_SOURCES_DEP) |
|
74 |
$(ECHO) Importing $1 src.zip |
|
75 |
$(MKDIR) -p $$(@D) |
|
13702 | 76 |
$(RM) $$@ $$@.tmp |
13164 | 77 |
($(CD) $$(@D) && $(JAR) xvf $$< > $$@.tmp) |
78 |
$(MV) $$@.tmp $$@ |
|
79 |
endef |
|
80 |
||
81 |
define ImportBinaries |
|
82 |
$1_BINARIES_DEP := $$(IMPORT_TARGET_BINARIES) |
|
83 |
IMPORT_TARGET_BINARIES += $(JDK_OUTPUTDIR)/_the.$1.binaries.imported |
|
84 |
||
85 |
$(JDK_OUTPUTDIR)/_the.$1.binaries.imported : $$($1_DIST)/lib/bin.zip $$($1_BINARIES_DEP) |
|
86 |
$(ECHO) Importing $1 bin.zip |
|
87 |
$(MKDIR) -p $$(@D) |
|
13702 | 88 |
$(RM) $$@ $$@.tmp |
13164 | 89 |
($(CD) $$(@D) && $(JAR) xvf $$< > $$@.tmp) |
90 |
$(MV) $$@.tmp $$@ |
|
91 |
endef |
|
92 |
||
93 |
####### |
|
94 |
||
95 |
$(foreach I,$(IMPORT_CLASSES), $(eval $(call ImportClasses,$I))) |
|
96 |
$(foreach I,$(IMPORT_SOURCES), $(eval $(call ImportSources,$I))) |
|
97 |
$(foreach I,$(IMPORT_BINARIES), $(eval $(call ImportBinaries,$I))) |
|
98 |
||
99 |
IMPORT_TARGET_FILES += $(IMPORT_TARGET_CLASSES) $(IMPORT_TARGET_SOURCES) $(IMPORT_TARGET_BINARIES) |
|
100 |
||
101 |
####### |
|
102 |
||
103 |
ifeq ($(OPENJDK_TARGET_OS),solaris) |
|
104 |
define do-install-file |
|
13702 | 105 |
$(MKDIR) -p '$$(@D)' |
106 |
$(RM) '$$@' |
|
13164 | 107 |
$(CP) -r -P '$$<' '$$(@D)' |
108 |
endef |
|
109 |
else ifeq ($(OPENJDK_TARGET_OS),macosx) |
|
110 |
define do-install-file |
|
13702 | 111 |
$(MKDIR) -p '$$(@D)' |
112 |
$(RM) '$$@' |
|
13164 | 113 |
$(CP) -pRP '$$<' '$$@' |
114 |
endef |
|
115 |
else |
|
116 |
define do-install-file |
|
13702 | 117 |
$(MKDIR) -p '$$(@D)' |
118 |
$(RM) '$$@' |
|
13164 | 119 |
$(CP) -P '$$<' '$$@' |
120 |
endef |
|
121 |
endif |
|
122 |
||
123 |
define CopyDir |
|
14428
cacd70dfb133
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14231
diff
changeset
|
124 |
$1_SRC_FILES := $(shell $(FIND) $2 -type f -a \( -name DUMMY $(addprefix -o$(SPACE)-name$(SPACE),$4) \)) |
13164 | 125 |
$1_DST_FILES := $$(patsubst $2/%,$3/%,$$($1_SRC_FILES)) |
126 |
IMPORT_TARGET_FILES += $$($1_DST_FILES) |
|
127 |
$3/% : $2/% |
|
14231 | 128 |
$(ECHO) $(LOG_INFO) Copying $$(@F) |
13164 | 129 |
$(do-install-file) |
130 |
endef |
|
131 |
||
132 |
####### |
|
133 |
||
134 |
# |
|
135 |
# Import hotspot |
|
136 |
# |
|
14428
cacd70dfb133
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14231
diff
changeset
|
137 |
HOTSPOT_IMPORT_FILES:=$(addprefix $(LIBRARY_PREFIX), jvm.* saproc.* jsig.* sawindbg.* jvm_db.* jvm_dtrace.*) \ |
cacd70dfb133
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14231
diff
changeset
|
138 |
Xusage.txt sa-jdi.jar |
cacd70dfb133
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14231
diff
changeset
|
139 |
$(eval $(call CopyDir,HOTSPOT0, $(HOTSPOT_LIB_DIR), $(INSTALL_LIBRARIES_HERE), $(HOTSPOT_IMPORT_FILES))) |
cacd70dfb133
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14231
diff
changeset
|
140 |
$(eval $(call CopyDir,HOTSPOT1, $(HOTSPOT_DIST)/lib, $(JDK_OUTPUTDIR)/lib, $(HOTSPOT_IMPORT_FILES))) |
13164 | 141 |
|
13702 | 142 |
JSIG_DEBUGINFO := $(strip $(wildcard $(HOTSPOT_DIST)/jre/lib$(OPENJDK_TARGET_CPU_LIBDIR)/libjsig.debuginfo) \ |
143 |
$(wildcard $(HOTSPOT_DIST)/jre/lib$(OPENJDK_TARGET_CPU_LIBDIR)/libjsig.diz) ) |
|
13164 | 144 |
|
145 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
|
146 |
ifeq ($(JVM_VARIANT_SERVER), true) |
|
147 |
IMPORT_TARGET_FILES += $(INSTALL_LIBRARIES_HERE)/server/$(LIBRARY_PREFIX)jsig$(SHARED_LIBRARY_SUFFIX) |
|
148 |
ifneq (,$(JSIG_DEBUGINFO)) |
|
149 |
IMPORT_TARGET_FILES += $(INSTALL_LIBRARIES_HERE)/server/$(foreach I,$(JSIG_DEBUGINFO),$(notdir $I)) |
|
150 |
endif |
|
151 |
endif |
|
152 |
ifeq ($(JVM_VARIANT_CLIENT), true) |
|
153 |
IMPORT_TARGET_FILES += $(INSTALL_LIBRARIES_HERE)/client/$(LIBRARY_PREFIX)jsig$(SHARED_LIBRARY_SUFFIX) |
|
154 |
ifneq (,$(JSIG_DEBUGINFO)) |
|
155 |
IMPORT_TARGET_FILES += $(INSTALL_LIBRARIES_HERE)/client/$(foreach I,$(JSIG_DEBUGINFO),$(notdir $I)) |
|
156 |
endif |
|
157 |
endif |
|
158 |
endif |
|
159 |
||
160 |
$(INSTALL_LIBRARIES_HERE)/server/%$(SHARED_LIBRARY_SUFFIX) : $(INSTALL_LIBRARIES_HERE)/%$(SHARED_LIBRARY_SUFFIX) |
|
13702 | 161 |
$(MKDIR) -p $(@D) |
162 |
$(RM) $@ |
|
13164 | 163 |
$(LN) -s ../$(@F) $@ |
164 |
||
165 |
$(INSTALL_LIBRARIES_HERE)/server/%.debuginfo : $(INSTALL_LIBRARIES_HERE)/%.debuginfo |
|
13702 | 166 |
$(MKDIR) -p $(@D) |
167 |
$(RM) $@ |
|
13164 | 168 |
$(LN) -s ../$(@F) $@ |
169 |
||
170 |
$(INSTALL_LIBRARIES_HERE)/server/%.diz : $(INSTALL_LIBRARIES_HERE)/%.diz |
|
13702 | 171 |
$(MKDIR) -p $(@D) |
172 |
$(RM) $@ |
|
173 |
$(RM) $@.tmp $(basename $@).debuginfo |
|
13164 | 174 |
$(LN) -s ../$(basename $(@F)).debuginfo $(basename $@).debuginfo |
15139
3ec04e4fbb5e
8006385: build-infra: linux and solaris *-debuginfo-*.zip file created from the new makefile has extra HUDSON direcotry in jre/lib/i386/server
erikj
parents:
14596
diff
changeset
|
175 |
$(CD) $(@D) && $(ZIP) -q -y $@.tmp $(basename $(@F)).debuginfo |
13702 | 176 |
$(RM) $(basename $@).debuginfo |
177 |
$(MV) $@.tmp $@ |
|
13164 | 178 |
|
179 |
$(INSTALL_LIBRARIES_HERE)/client/%$(SHARED_LIBRARY_SUFFIX) : $(INSTALL_LIBRARIES_HERE)/%$(SHARED_LIBRARY_SUFFIX) |
|
13702 | 180 |
$(MKDIR) -p $(@D) |
181 |
$(RM) $@ |
|
13164 | 182 |
$(LN) -s ../$(@F) $@ |
183 |
||
184 |
$(INSTALL_LIBRARIES_HERE)/client/%.debuginfo : $(INSTALL_LIBRARIES_HERE)/%.debuginfo |
|
13702 | 185 |
$(MKDIR) -p $(@D) |
186 |
$(RM) $@ |
|
13164 | 187 |
$(LN) -s ../$(@F) $@ |
188 |
||
189 |
$(INSTALL_LIBRARIES_HERE)/client/%.diz : $(INSTALL_LIBRARIES_HERE)/%.diz |
|
13702 | 190 |
$(MKDIR) -p $(@D) |
191 |
$(RM) $@ |
|
192 |
$(RM) $@.tmp $(basename $@).debuginfo |
|
13164 | 193 |
$(LN) -s ../$(basename $(@F)).debuginfo $(basename $@).debuginfo |
15139
3ec04e4fbb5e
8006385: build-infra: linux and solaris *-debuginfo-*.zip file created from the new makefile has extra HUDSON direcotry in jre/lib/i386/server
erikj
parents:
14596
diff
changeset
|
194 |
$(CD) $(@D) && $(ZIP) -q -y $@.tmp $(basename $(@F)).debuginfo |
13702 | 195 |
$(RM) $(basename $@).debuginfo |
196 |
$(MV) $@.tmp $@ |
|
13164 | 197 |
|
198 |
####### |
|
199 |
||
200 |
ifeq ($(OPENJDK_TARGET_OS),solaris) |
|
201 |
define install-file |
|
13702 | 202 |
$(MKDIR) -p '$(@D)' |
203 |
$(RM) '$@' |
|
13164 | 204 |
$(CP) -r -P '$<' '$(@D)' |
205 |
endef |
|
206 |
else ifeq ($(OPENJDK_TARGET_OS),macosx) |
|
207 |
define install-file |
|
13702 | 208 |
$(MKDIR) -p '$(@D)' |
209 |
$(RM) '$@' |
|
13164 | 210 |
$(CP) -pRP '$<' '$@' |
211 |
endef |
|
212 |
else |
|
213 |
define install-file |
|
13702 | 214 |
$(MKDIR) -p '$(@D)' |
215 |
$(RM) '$@' |
|
13164 | 216 |
$(CP) -P '$<' '$@' |
217 |
endef |
|
218 |
endif |
|
219 |
||
220 |
####### |
|
221 |
||
222 |
all: $(IMPORT_TARGET_FILES) |