author | lana |
Thu, 02 Jun 2016 20:33:33 +0000 | |
changeset 38800 | 06f53fa48037 |
parent 38371 | da16c8571a28 |
permissions | -rw-r--r-- |
13164 | 1 |
# |
37525 | 2 |
# Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved. |
13164 | 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 |
||
25859 | 31 |
################################################################################ |
13164 | 32 |
|
27736
8c9bd4be4a86
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
25859
diff
changeset
|
33 |
# Put the libraries here. Different locations for different target OS types. |
27565 | 34 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
30329 | 35 |
HOTSPOT_LIB_DIR := $(HOTSPOT_DIST)/lib$(OPENJDK_TARGET_CPU_LIBDIR) |
27565 | 36 |
BASE_INSTALL_LIBRARIES_HERE := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base$(OPENJDK_TARGET_CPU_LIBDIR) |
13164 | 37 |
else |
30329 | 38 |
HOTSPOT_LIB_DIR := $(HOTSPOT_DIST)/bin |
27565 | 39 |
BASE_INSTALL_LIBRARIES_HERE := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base |
13164 | 40 |
endif |
41 |
||
25859 | 42 |
################################################################################ |
13164 | 43 |
# |
44 |
# Import hotspot |
|
45 |
# |
|
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
46 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
47 |
# Don't import jsig library for static builds |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
48 |
ifneq ($(STATIC_BUILD), true) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
49 |
JSIG_IMPORT = jsig.* |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
50 |
else |
35241 | 51 |
JSIG_IMPORT = |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
52 |
endif |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
53 |
|
27565 | 54 |
HOTSPOT_BASE_IMPORT_FILES := \ |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
55 |
$(addprefix $(LIBRARY_PREFIX), jvm.* $(JSIG_IMPORT) jvm_db.* jvm_dtrace.*) \ |
27565 | 56 |
Xusage.txt \ |
57 |
# |
|
58 |
||
59 |
$(eval $(call SetupCopyFiles,COPY_HOTSPOT_BASE, \ |
|
60 |
SRC := $(HOTSPOT_LIB_DIR), \ |
|
61 |
DEST := $(BASE_INSTALL_LIBRARIES_HERE), \ |
|
62 |
FILES := $(shell $(FIND) $(HOTSPOT_LIB_DIR) -type f \ |
|
63 |
-a \( -name DUMMY $(addprefix -o$(SPACE)-name$(SPACE), $(HOTSPOT_BASE_IMPORT_FILES)) \) ))) |
|
64 |
||
65 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
66 |
$(eval $(call SetupCopyFiles,COPY_HOTSPOT_BASE_JVMLIB, \ |
|
67 |
SRC := $(HOTSPOT_DIST)/lib, \ |
|
68 |
DEST := $(BASE_INSTALL_LIBRARIES_HERE), \ |
|
69 |
FILES := $(wildcard $(HOTSPOT_DIST)/lib/*.lib))) |
|
70 |
endif |
|
71 |
||
72 |
BASE_TARGETS := $(COPY_HOTSPOT_BASE) $(COPY_HOTSPOT_BASE_JVMLIB) |
|
73 |
||
74 |
################################################################################ |
|
13164 | 75 |
|
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
76 |
ifneq ($(STATIC_BUILD), true) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
77 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
78 |
JSIG_DEBUGINFO := $(strip $(wildcard $(HOTSPOT_DIST)/lib$(OPENJDK_TARGET_CPU_LIBDIR)/libjsig$(SHARED_LIBRARY_SUFFIX).dSYM) \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
79 |
$(wildcard $(HOTSPOT_DIST)/lib$(OPENJDK_TARGET_CPU_LIBDIR)/libjsig.diz) ) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
80 |
else |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
81 |
JSIG_DEBUGINFO := $(strip $(wildcard $(HOTSPOT_DIST)/lib$(OPENJDK_TARGET_CPU_LIBDIR)/libjsig.debuginfo) \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
82 |
$(wildcard $(HOTSPOT_DIST)/lib$(OPENJDK_TARGET_CPU_LIBDIR)/libjsig.diz) ) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
83 |
endif |
13164 | 84 |
|
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
85 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
37525 | 86 |
ifeq ($(call check-jvm-variant, server), true) |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
87 |
BASE_TARGETS += $(BASE_INSTALL_LIBRARIES_HERE)/server/$(LIBRARY_PREFIX)jsig$(SHARED_LIBRARY_SUFFIX) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
88 |
ifneq (, $(JSIG_DEBUGINFO)) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
89 |
BASE_TARGETS += $(BASE_INSTALL_LIBRARIES_HERE)/server/$(foreach I,$(JSIG_DEBUGINFO),$(notdir $I)) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
90 |
endif |
13164 | 91 |
endif |
37525 | 92 |
ifeq ($(call check-jvm-variant, client), true) |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
93 |
BASE_TARGETS += $(BASE_INSTALL_LIBRARIES_HERE)/client/$(LIBRARY_PREFIX)jsig$(SHARED_LIBRARY_SUFFIX) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
94 |
ifneq (, $(JSIG_DEBUGINFO)) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
95 |
BASE_TARGETS += $(BASE_INSTALL_LIBRARIES_HERE)/client/$(foreach I,$(JSIG_DEBUGINFO),$(notdir $I)) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
96 |
endif |
13164 | 97 |
endif |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
98 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
37525 | 99 |
ifeq ($(call check-jvm-variant, minimal), true) |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
100 |
BASE_TARGETS += $(BASE_INSTALL_LIBRARIES_HERE)/minimal/$(LIBRARY_PREFIX)jsig$(SHARED_LIBRARY_SUFFIX) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
101 |
ifneq (,$(JSIG_DEBUGINFO)) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
102 |
BASE_TARGETS += $(BASE_INSTALL_LIBRARIES_HERE)/minimal/$(foreach I,$(JSIG_DEBUGINFO),$(notdir $I)) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
30329
diff
changeset
|
103 |
endif |
21131
7171b82a14c3
8027117: adapt JDK-7165611 to new build-infra whitespace/indent policy
dcubed
parents:
20888
diff
changeset
|
104 |
endif |
15680
d379c4f7bb47
8006651: build-infra: Import.gmk needs to add support for the minimal VM
dholmes
parents:
15139
diff
changeset
|
105 |
endif |
21131
7171b82a14c3
8027117: adapt JDK-7165611 to new build-infra whitespace/indent policy
dcubed
parents:
20888
diff
changeset
|
106 |
endif |
13164 | 107 |
endif |
108 |
||
27565 | 109 |
$(BASE_INSTALL_LIBRARIES_HERE)/server/%$(SHARED_LIBRARY_SUFFIX): $(BASE_INSTALL_LIBRARIES_HERE)/%$(SHARED_LIBRARY_SUFFIX) |
13702 | 110 |
$(MKDIR) -p $(@D) |
111 |
$(RM) $@ |
|
13164 | 112 |
$(LN) -s ../$(@F) $@ |
113 |
||
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
114 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
38371 | 115 |
$(BASE_INSTALL_LIBRARIES_HERE)/server/%.dSYM: |
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
116 |
$(MKDIR) -p $(@D) |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
117 |
$(RM) $@ |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
118 |
$(LN) -s ../$(@F) $@ |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
119 |
|
27565 | 120 |
$(BASE_INSTALL_LIBRARIES_HERE)/server/%.diz : $(BASE_INSTALL_LIBRARIES_HERE)/%.diz |
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
121 |
$(MKDIR) -p $(@D) |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
122 |
$(RM) $@ |
21133 | 123 |
$(RM) $@.tmp $(basename $@)$(SHARED_LIBRARY_SUFFIX).dSYM |
124 |
$(LN) -s ../$(basename $(@F))$(SHARED_LIBRARY_SUFFIX).dSYM $(basename $@)$(SHARED_LIBRARY_SUFFIX).dSYM |
|
125 |
$(CD) $(@D) && $(ZIP) -q -y $@.tmp $(basename $(@F))$(SHARED_LIBRARY_SUFFIX).dSYM |
|
126 |
$(RM) $(basename $@)$(SHARED_LIBRARY_SUFFIX).dSYM |
|
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
127 |
$(MV) $@.tmp $@ |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
128 |
else |
27565 | 129 |
$(BASE_INSTALL_LIBRARIES_HERE)/server/%.debuginfo: $(BASE_INSTALL_LIBRARIES_HERE)/%.debuginfo |
13702 | 130 |
$(MKDIR) -p $(@D) |
131 |
$(RM) $@ |
|
13164 | 132 |
$(LN) -s ../$(@F) $@ |
133 |
||
27565 | 134 |
$(BASE_INSTALL_LIBRARIES_HERE)/server/%.diz: $(BASE_INSTALL_LIBRARIES_HERE)/%.diz |
13702 | 135 |
$(MKDIR) -p $(@D) |
136 |
$(RM) $@ |
|
137 |
$(RM) $@.tmp $(basename $@).debuginfo |
|
13164 | 138 |
$(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
|
139 |
$(CD) $(@D) && $(ZIP) -q -y $@.tmp $(basename $(@F)).debuginfo |
13702 | 140 |
$(RM) $(basename $@).debuginfo |
141 |
$(MV) $@.tmp $@ |
|
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
142 |
endif |
13164 | 143 |
|
27565 | 144 |
$(BASE_INSTALL_LIBRARIES_HERE)/client/%$(SHARED_LIBRARY_SUFFIX): $(BASE_INSTALL_LIBRARIES_HERE)/%$(SHARED_LIBRARY_SUFFIX) |
13702 | 145 |
$(MKDIR) -p $(@D) |
146 |
$(RM) $@ |
|
13164 | 147 |
$(LN) -s ../$(@F) $@ |
148 |
||
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
149 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
27565 | 150 |
$(BASE_INSTALL_LIBRARIES_HERE)/client/%.dSYM : $(BASE_INSTALL_LIBRARIES_HERE)/%.dSYM |
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
151 |
$(MKDIR) -p $(@D) |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
152 |
$(RM) $@ |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
153 |
$(LN) -s ../$(@F) $@ |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
154 |
|
27565 | 155 |
$(BASE_INSTALL_LIBRARIES_HERE)/client/%.diz : $(BASE_INSTALL_LIBRARIES_HERE)/%.diz |
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
156 |
$(MKDIR) -p $(@D) |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
157 |
$(RM) $@ |
21133 | 158 |
$(RM) $@.tmp $(basename $@)$(SHARED_LIBRARY_SUFFIX).dSYM |
159 |
$(LN) -s ../$(basename $(@F))$(SHARED_LIBRARY_SUFFIX).dSYM $(basename $@)$(SHARED_LIBRARY_SUFFIX).dSYM |
|
160 |
$(CD) $(@D) && $(ZIP) -q -y $@.tmp $(basename $(@F))$(SHARED_LIBRARY_SUFFIX).dSYM |
|
161 |
$(RM) $(basename $@)$(SHARED_LIBRARY_SUFFIX).dSYM |
|
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
162 |
$(MV) $@.tmp $@ |
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
163 |
else |
27565 | 164 |
$(BASE_INSTALL_LIBRARIES_HERE)/client/%.debuginfo: $(BASE_INSTALL_LIBRARIES_HERE)/%.debuginfo |
13702 | 165 |
$(MKDIR) -p $(@D) |
166 |
$(RM) $@ |
|
13164 | 167 |
$(LN) -s ../$(@F) $@ |
168 |
||
27565 | 169 |
$(BASE_INSTALL_LIBRARIES_HERE)/client/%.diz: $(BASE_INSTALL_LIBRARIES_HERE)/%.diz |
170 |
$(MKDIR) -p $(@D) |
|
171 |
$(RM) $@ |
|
172 |
$(RM) $@.tmp $(basename $@).debuginfo |
|
173 |
$(LN) -s ../$(basename $(@F)).debuginfo $(basename $@).debuginfo |
|
174 |
$(CD) $(@D) && $(ZIP) -q -y $@.tmp $(basename $(@F)).debuginfo |
|
175 |
$(RM) $(basename $@).debuginfo |
|
176 |
$(MV) $@.tmp $@ |
|
177 |
endif |
|
178 |
||
179 |
$(BASE_INSTALL_LIBRARIES_HERE)/minimal/%$(SHARED_LIBRARY_SUFFIX): $(BASE_INSTALL_LIBRARIES_HERE)/%$(SHARED_LIBRARY_SUFFIX) |
|
180 |
$(MKDIR) -p $(@D) |
|
181 |
$(RM) $@ |
|
182 |
$(LN) -s ../$(@F) $@ |
|
183 |
||
184 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
|
185 |
$(BASE_INSTALL_LIBRARIES_HERE)/minimal/%.debuginfo: $(BASE_INSTALL_LIBRARIES_HERE)/%.debuginfo |
|
186 |
$(MKDIR) -p $(@D) |
|
187 |
$(RM) $@ |
|
188 |
$(LN) -s ../$(@F) $@ |
|
189 |
||
190 |
$(BASE_INSTALL_LIBRARIES_HERE)/minimal/%.diz: $(BASE_INSTALL_LIBRARIES_HERE)/%.diz |
|
13702 | 191 |
$(MKDIR) -p $(@D) |
192 |
$(RM) $@ |
|
193 |
$(RM) $@.tmp $(basename $@).debuginfo |
|
13164 | 194 |
$(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
|
195 |
$(CD) $(@D) && $(ZIP) -q -y $@.tmp $(basename $(@F)).debuginfo |
13702 | 196 |
$(RM) $(basename $@).debuginfo |
197 |
$(MV) $@.tmp $@ |
|
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
198 |
endif |
13164 | 199 |
|
27565 | 200 |
################################################################################ |
15680
d379c4f7bb47
8006651: build-infra: Import.gmk needs to add support for the minimal VM
dholmes
parents:
15139
diff
changeset
|
201 |
|
27565 | 202 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
203 |
$(eval $(call SetupCopyFiles,BASE_COPY_LIBS_BIN, \ |
|
204 |
SRC := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base, \ |
|
205 |
DEST := $(JDK_OUTPUTDIR)/bin, \ |
|
206 |
FILES := $(filter-out %.lib, $(BASE_TARGETS)))) |
|
15680
d379c4f7bb47
8006651: build-infra: Import.gmk needs to add support for the minimal VM
dholmes
parents:
15139
diff
changeset
|
207 |
|
27565 | 208 |
$(eval $(call SetupCopyFiles,BASE_COPY_LIBS_LIB, \ |
209 |
SRC := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base, \ |
|
210 |
DEST := $(JDK_OUTPUTDIR)/lib, \ |
|
211 |
FILES := $(filter %.lib, $(BASE_TARGETS)))) |
|
212 |
||
213 |
else |
|
214 |
$(eval $(call SetupCopyFiles,BASE_COPY_LIBS, \ |
|
215 |
SRC := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base, \ |
|
216 |
DEST := $(JDK_OUTPUTDIR)/lib, \ |
|
217 |
FILES := $(BASE_TARGETS))) |
|
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
17957
diff
changeset
|
218 |
endif |
15680
d379c4f7bb47
8006651: build-infra: Import.gmk needs to add support for the minimal VM
dholmes
parents:
15139
diff
changeset
|
219 |
|
27565 | 220 |
################################################################################ |
17957
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
15691
diff
changeset
|
221 |
|
34374
b45db1cff661
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33653
diff
changeset
|
222 |
all: $(BASE_TARGETS) $(BASE_COPY_LIBS_BIN) $(BASE_COPY_LIBS_LIB) \ |
b45db1cff661
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33653
diff
changeset
|
223 |
$(BASE_COPY_LIBS) |
17957
1a51992c6097
8010785: JDK 8 build on Linux fails with new build mechanism
erikj
parents:
15691
diff
changeset
|
224 |
|
27565 | 225 |
.PHONY: default all |