author | jjh |
Fri, 09 Dec 2011 12:56:22 -0800 | |
changeset 11277 | e3a1c90dd439 |
parent 10603 | c315c8424ce2 |
child 12047 | 320a714614e9 |
permissions | -rw-r--r-- |
2 | 1 |
# |
9035
1255eb81cc2f
7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents:
8793
diff
changeset
|
2 |
# Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
# |
|
5506 | 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. |
|
2 | 24 |
# |
25 |
||
26 |
# |
|
27 |
# Imports files exported by a hotspot build or provided from an external |
|
28 |
# location into the OUTPUTDIR, and also primes the OUTPUTDIR with files |
|
29 |
# that are provided inside this workspace. |
|
30 |
# |
|
31 |
# IMPORT_LIST contains the list of destination files that are copied |
|
32 |
# from external places (outside this workspace). |
|
33 |
# |
|
34 |
# INTERNAL_IMPORT_LIST is the list of destination files from BUILDDIR. |
|
35 |
# |
|
36 |
||
37 |
BUILDDIR = ../.. |
|
38 |
PRODUCT = java |
|
39 |
include $(BUILDDIR)/common/Defs.gmk |
|
40 |
||
41 |
SERVER_LOCATION = server |
|
42 |
CLIENT_LOCATION = client |
|
43 |
||
44 |
DB_SUFFIX = _db |
|
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
45 |
DTRACE_SUFFIX = _dtrace |
2 | 46 |
|
47 |
ifeq ($(PLATFORM), windows) |
|
48 |
LIB_LOCATION = $(BINDIR) |
|
49 |
else |
|
50 |
LIB_LOCATION = $(LIBDIR)/$(LIBARCH) |
|
51 |
endif |
|
52 |
||
53 |
JVM_NAME = $(LIB_PREFIX)jvm.$(LIBRARY_SUFFIX) |
|
54 |
JVMLIB_NAME = $(LIB_PREFIX)jvm.$(LIB_SUFFIX) |
|
55 |
JVMMAP_NAME = $(LIB_PREFIX)jvm.map |
|
56 |
JVMPDB_NAME = $(LIB_PREFIX)jvm.pdb |
|
57 |
LIBJSIG_NAME = $(LIB_PREFIX)jsig.$(LIBRARY_SUFFIX) |
|
58 |
JVMDB_NAME = $(LIB_PREFIX)jvm$(DB_SUFFIX).$(LIBRARY_SUFFIX) |
|
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
59 |
JVMDTRACE_NAME = $(LIB_PREFIX)jvm$(DTRACE_SUFFIX).$(LIBRARY_SUFFIX) |
2 | 60 |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
61 |
JVM_DEBUGINFO_NAME = $(LIB_PREFIX)jvm.debuginfo |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
62 |
LIBJSIG_DEBUGINFO_NAME = $(LIB_PREFIX)jsig.debuginfo |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
63 |
JVMDB_DEBUGINFO_NAME = $(LIB_PREFIX)jvm$(DB_SUFFIX).debuginfo |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
64 |
JVMDTRACE_DEBUGINFO_NAME = $(LIB_PREFIX)jvm$(DTRACE_SUFFIX).debuginfo |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
65 |
|
2 | 66 |
CLASSSHARINGDATA_DIR = $(BUILDDIR)/tools/sharing |
67 |
||
68 |
# Needed to do file copy |
|
69 |
ABS_BUILDDIR :=$(call FullPath,$(BUILDDIR)) |
|
70 |
||
4917
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4665
diff
changeset
|
71 |
SUBDIRS_desktop = fonts |
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4665
diff
changeset
|
72 |
SUBDIRS_tools = sajdi |
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4665
diff
changeset
|
73 |
include $(BUILDDIR)/common/Subdirs.gmk |
c98da2209f8c
6915413: Module build: building of specified jdk components instead of all
mchung
parents:
4665
diff
changeset
|
74 |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
4340
diff
changeset
|
75 |
all clean clobber:: |
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
4340
diff
changeset
|
76 |
$(SUBDIRS-loop) |
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
4340
diff
changeset
|
77 |
|
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
4340
diff
changeset
|
78 |
all:: build |
2 | 79 |
|
80 |
# List of files created here or coming from BUILDDIR area (this workspace) |
|
81 |
INTERNAL_IMPORT_LIST = $(LIBDIR)/classlist |
|
82 |
||
83 |
# List of files coming from outside this workspace |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
84 |
ifndef BUILD_CLIENT_ONLY |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
85 |
IMPORT_LIST = $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_NAME) \ |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
86 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/Xusage.txt |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
87 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
88 |
# the import JDK may not contain .debuginfo files |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
89 |
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVM_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
90 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
91 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
92 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
93 |
else |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
94 |
IMPORT_LIST = |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
95 |
endif |
2 | 96 |
|
4111
ffc9c33335f4
6891677: java/build integrate zero assembler JDK changes
gbenson
parents:
3288
diff
changeset
|
97 |
# Hotspot client is only available on 32-bit non-Zero builds |
ffc9c33335f4
6891677: java/build integrate zero assembler JDK changes
gbenson
parents:
3288
diff
changeset
|
98 |
ifneq ($(ZERO_BUILD), true) |
2 | 99 |
ifeq ($(ARCH_DATA_MODEL), 32) |
100 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_NAME) \ |
|
101 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/Xusage.txt |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
102 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
103 |
# the import JDK may not contain .debuginfo files |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
104 |
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVM_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
105 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
106 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
107 |
endif |
2 | 108 |
endif |
4111
ffc9c33335f4
6891677: java/build integrate zero assembler JDK changes
gbenson
parents:
3288
diff
changeset
|
109 |
endif |
2 | 110 |
|
111 |
ifeq ($(PLATFORM), windows) |
|
112 |
# Windows vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv Windows |
|
113 |
||
114 |
IMPORT_LIST += $(MS_RUNTIME_LIBRARIES:%=$(BINDIR)/%) |
|
115 |
||
1776
33e9405ab91b
6754862: jdk/src/windows/bin/java_md.c: hardcoded reference to msvcr71.dll
tbell
parents:
2
diff
changeset
|
116 |
$(BINDIR)/$(MSVCRNN_DLL): $(MSVCRNN_DLL_PATH)/$(MSVCRNN_DLL) |
2 | 117 |
$(install-import-file) |
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
4340
diff
changeset
|
118 |
$(call chmod-file, a+x) |
2 | 119 |
|
120 |
# Get the hotspot .map and .pdb files for client and server |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
121 |
ifndef BUILD_CLIENT_ONLY |
2 | 122 |
IMPORT_LIST += \ |
123 |
$(LIBDIR)/$(JVMLIB_NAME) \ |
|
124 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMMAP_NAME) \ |
|
125 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMPDB_NAME) |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
126 |
endif |
2 | 127 |
|
3111
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
128 |
# Add .map and .pdb files to the import path for client and kernel VMs. |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
129 |
# These are only available on 32-bit windows builds. |
2 | 130 |
ifeq ($(ARCH_DATA_MODEL), 32) |
131 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMMAP_NAME) \ |
|
132 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMPDB_NAME) |
|
3114
f503507dcce5
6853152: JDK 7 cannot build w/o ALT_HOTSPOT_KERNEL_PATH set. - still broken
herrick
parents:
3111
diff
changeset
|
133 |
ifeq ($(DO_KERNEL), true) |
f503507dcce5
6853152: JDK 7 cannot build w/o ALT_HOTSPOT_KERNEL_PATH set. - still broken
herrick
parents:
3111
diff
changeset
|
134 |
IMPORT_LIST += $(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVMMAP_NAME) \ |
f503507dcce5
6853152: JDK 7 cannot build w/o ALT_HOTSPOT_KERNEL_PATH set. - still broken
herrick
parents:
3111
diff
changeset
|
135 |
$(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVMPDB_NAME) |
f503507dcce5
6853152: JDK 7 cannot build w/o ALT_HOTSPOT_KERNEL_PATH set. - still broken
herrick
parents:
3111
diff
changeset
|
136 |
endif |
2 | 137 |
endif |
138 |
||
139 |
$(LIBDIR)/$(JVMLIB_NAME): $(HOTSPOT_LIB_PATH)/$(JVMLIB_NAME) |
|
140 |
$(install-import-file) |
|
141 |
||
142 |
# it is OK for the .map and .pdb files to not exist, so do not force a |
|
143 |
# dependency on them from the bootstrap location, and allow the copy to fail. |
|
144 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMMAP_NAME): |
|
145 |
@$(prep-target) |
|
146 |
-$(CP) $(HOTSPOT_CLIENT_PATH)/$(JVMMAP_NAME) $@ |
|
147 |
||
3111
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
148 |
$(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVMMAP_NAME): |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
149 |
@$(prep-target) |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
150 |
-$(CP) $(HOTSPOT_KERNEL_PATH)/$(JVMMAP_NAME) $@ |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
151 |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
152 |
ifndef BUILD_CLIENT_ONLY |
2 | 153 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMMAP_NAME): |
154 |
@$(prep-target) |
|
155 |
-$(CP) $(HOTSPOT_SERVER_PATH)/$(JVMMAP_NAME) $@ |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
156 |
endif |
2 | 157 |
|
158 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMPDB_NAME): |
|
159 |
@$(prep-target) |
|
160 |
-$(CP) $(HOTSPOT_CLIENT_PATH)/$(JVMPDB_NAME) $@ |
|
161 |
||
3111
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
162 |
$(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVMPDB_NAME): |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
163 |
@$(prep-target) |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
164 |
-$(CP) $(HOTSPOT_KERNEL_PATH)/$(JVMPDB_NAME) $@ |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
165 |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
166 |
ifndef BUILD_CLIENT_ONLY |
2 | 167 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMPDB_NAME): |
168 |
@$(prep-target) |
|
169 |
-$(CP) $(HOTSPOT_SERVER_PATH)/$(JVMPDB_NAME) $@ |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
170 |
endif |
2 | 171 |
|
172 |
# Windows ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Windows |
|
173 |
else # PLATFORM |
|
174 |
# NOT Windows vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv NOT Windows |
|
175 |
||
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
176 |
IMPORT_LIST += $(LIB_LOCATION)/$(LIBJSIG_NAME) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
177 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
178 |
# the import JDK may not contain .debuginfo files |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
179 |
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
180 |
IMPORT_LIST += $(LIB_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
181 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
182 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
183 |
ifndef BUILD_CLIENT_ONLY |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
184 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_NAME) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
185 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
186 |
# the import JDK may not contain the target of the symlink |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
187 |
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
188 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
189 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
190 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
191 |
endif |
2 | 192 |
|
193 |
ifeq ($(PLATFORM), solaris) |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
194 |
ifndef BUILD_CLIENT_ONLY |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
195 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_NAME) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
196 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
197 |
# the import JDK may not contain .debuginfo files |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
198 |
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDB_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
199 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
200 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
201 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
202 |
# The conditional can be removed when import JDKs contain these files. |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
203 |
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_NAME)),) |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
204 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_NAME) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
205 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
206 |
# the import JDK may not contain .debuginfo files |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
207 |
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
208 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
209 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
210 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
211 |
else |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
212 |
$(warning WARNING: $(HOTSPOT_SERVER_PATH)/$(JVMDB_NAME) not found!) |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
213 |
endif |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
214 |
endif |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
215 |
endif |
2 | 216 |
|
4111
ffc9c33335f4
6891677: java/build integrate zero assembler JDK changes
gbenson
parents:
3288
diff
changeset
|
217 |
ifneq ($(ZERO_BUILD), true) |
2 | 218 |
ifeq ($(ARCH_DATA_MODEL), 32) |
219 |
||
220 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_NAME) |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
221 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
222 |
# the import JDK may not contain the target of the symlink |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
223 |
ifneq ($(wildcard $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
224 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
225 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
226 |
endif |
2 | 227 |
|
228 |
ifeq ($(PLATFORM), solaris) |
|
229 |
# solaris vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv solaris |
|
230 |
||
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
231 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_NAME) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
232 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
233 |
# the import JDK may not contain .debuginfo files |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
234 |
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDB_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
235 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
236 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
237 |
endif |
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
238 |
|
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
239 |
# The conditional can be removed when import JDKs contain these files. |
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
240 |
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_NAME)),) |
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
241 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_NAME) |
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
242 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_NAME) |
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
243 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_NAME) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
244 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
245 |
# the import JDK may not contain .debuginfo files |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
246 |
ifneq ($(wildcard $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
247 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
248 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
249 |
IMPORT_LIST += $(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
250 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
251 |
endif |
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
252 |
else |
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
253 |
$(warning WARNING: $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_NAME) not found!) |
2 | 254 |
endif |
255 |
||
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
256 |
ifndef BUILD_CLIENT_ONLY |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
257 |
# The conditional can be removed when import JDKs contain these files. |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
258 |
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_NAME)),) |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
259 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_NAME) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
260 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
261 |
# the import JDK may not contain .debuginfo files |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
262 |
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
263 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
264 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
265 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
266 |
else |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
267 |
$(warning WARNING: $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_NAME) not found!) |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
268 |
endif |
2 | 269 |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
270 |
# The conditional can be removed when import JDKs contain these files. |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
271 |
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_NAME)),) |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
272 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_NAME) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
273 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
274 |
# the import JDK may not contain .debuginfo files |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
275 |
ifneq ($(wildcard $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_DEBUGINFO_NAME)),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
276 |
IMPORT_LIST += $(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
277 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
278 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
279 |
else |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
280 |
$(warning WARNING: $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_NAME) not found!) |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
281 |
endif |
2 | 282 |
endif |
283 |
||
284 |
# For backwards compatability, make a link of the 32-bit client JVM to $(LIBDIR) |
|
285 |
IMPORT_LIST += $(LIB_LOCATION)/$(JVM_NAME) |
|
286 |
||
287 |
$(LIB_LOCATION)/$(JVM_NAME): $(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_NAME) |
|
288 |
@$(prep-target) |
|
289 |
||
290 |
# solaris ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ solaris |
|
291 |
endif # 32bit solaris |
|
292 |
||
293 |
endif # 32bit |
|
294 |
||
4111
ffc9c33335f4
6891677: java/build integrate zero assembler JDK changes
gbenson
parents:
3288
diff
changeset
|
295 |
endif # ZERO_BUILD |
ffc9c33335f4
6891677: java/build integrate zero assembler JDK changes
gbenson
parents:
3288
diff
changeset
|
296 |
|
2 | 297 |
# NOT Windows ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ NOT Windows |
298 |
||
299 |
endif # PLATFORM |
|
300 |
||
301 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVM_NAME) |
|
302 |
$(install-import-file) |
|
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
303 |
@$(call binary_file_verification,$@) |
2 | 304 |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
305 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
306 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVM_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVM_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
307 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
308 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
309 |
|
3111
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
310 |
$(LIB_LOCATION)/$(KERNEL_LOCATION)/$(JVM_NAME): $(HOTSPOT_KERNEL_PATH)/$(JVM_NAME) |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
311 |
$(install-file) |
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
312 |
@$(call binary_file_verification,$@) |
3111
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
313 |
|
4062
203caeb1e9a8
6896472: Missing libjsig.so causes jdk build failure
ohair
parents:
3288
diff
changeset
|
314 |
$(LIB_LOCATION)/$(LIBJSIG_NAME): $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_NAME) |
2 | 315 |
$(install-import-file) |
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
316 |
@$(call binary_file_verification,$@) |
2 | 317 |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
318 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
319 |
$(LIB_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME): $(HOTSPOT_IMPORT_PATH)/$(ARCH_VM_SUBDIR)/$(LIBJSIG_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
320 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
321 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
322 |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
323 |
ifndef BUILD_CLIENT_ONLY |
2 | 324 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_NAME) \ |
325 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_NAME): |
|
326 |
@$(prep-target) |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
4340
diff
changeset
|
327 |
$(call install-sym-link, ../$(LIBJSIG_NAME)) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
328 |
|
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
329 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
330 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME) \ |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
331 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME): |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
332 |
@$(prep-target) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
333 |
$(call install-sym-link, ../$(LIBJSIG_DEBUGINFO_NAME)) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
334 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
335 |
else |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
336 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_NAME): |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
337 |
@$(prep-target) |
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
338 |
$(call install-sym-link, ../$(LIBJSIG_NAME)) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
339 |
|
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
340 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
341 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(LIBJSIG_DEBUGINFO_NAME): |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
342 |
@$(prep-target) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
343 |
$(call install-sym-link, ../$(LIBJSIG_DEBUGINFO_NAME)) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
344 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
345 |
endif |
2 | 346 |
|
347 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDB_NAME) |
|
348 |
$(install-import-file) |
|
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
349 |
@$(call binary_file_verification,$@) |
2 | 350 |
|
351 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_NAME): $(HOTSPOT_CLIENT_PATH)/64/$(JVMDB_NAME) |
|
352 |
$(install-import-file) |
|
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
353 |
@$(call binary_file_verification,$@) |
2 | 354 |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
355 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
356 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDB_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDB_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
357 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
358 |
|
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
359 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/64/$(JVMDB_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
360 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
361 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
362 |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
363 |
ifndef BUILD_CLIENT_ONLY |
2 | 364 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_NAME): $(HOTSPOT_SERVER_PATH)/$(JVMDB_NAME) |
365 |
$(install-import-file) |
|
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
366 |
@$(call binary_file_verification,$@) |
2 | 367 |
|
368 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_NAME): $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_NAME) |
|
369 |
$(install-import-file) |
|
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
370 |
@$(call binary_file_verification,$@) |
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
371 |
|
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
372 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
373 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDB_DEBUGINFO_NAME): $(HOTSPOT_SERVER_PATH)/$(JVMDB_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
374 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
375 |
|
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
376 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDB_DEBUGINFO_NAME): $(HOTSPOT_SERVER_PATH)/64/$(JVMDB_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
377 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
378 |
endif |
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
379 |
endif |
2 | 380 |
|
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
381 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_NAME) |
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
382 |
$(install-import-file) |
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
383 |
@$(call binary_file_verification,$@) |
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
384 |
|
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
385 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_NAME): $(HOTSPOT_CLIENT_PATH)/64/$(JVMDTRACE_NAME) |
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
386 |
$(install-import-file) |
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
387 |
@$(call binary_file_verification,$@) |
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
388 |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
389 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
390 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/$(JVMDTRACE_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
391 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
392 |
|
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
393 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME): $(HOTSPOT_CLIENT_PATH)/64/$(JVMDTRACE_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
394 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
395 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
396 |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
397 |
ifndef BUILD_CLIENT_ONLY |
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
398 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_NAME): $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_NAME) |
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
399 |
$(install-import-file) |
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
400 |
@$(call binary_file_verification,$@) |
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
401 |
|
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
402 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_NAME): $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_NAME) |
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
403 |
$(install-import-file) |
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
404 |
@$(call binary_file_verification,$@) |
6378
5c7242a0a4a5
6983225: libjvm_db.so is not imported into solaris-x86 builds, and libjvm_dtrace.so not imported at all.
kamg
parents:
5506
diff
changeset
|
405 |
|
2 | 406 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_NAME): $(HOTSPOT_SERVER_PATH)/$(JVM_NAME) |
407 |
$(install-import-file) |
|
8008
753c38f4af83
6975326: Problem in install/make/rebase/Makefile, grep on empty pattern
ohair
parents:
7668
diff
changeset
|
408 |
@$(call binary_file_verification,$@) |
2 | 409 |
|
10603
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
410 |
ifneq ($(OBJCOPY),) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
411 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVMDTRACE_DEBUGINFO_NAME): $(HOTSPOT_SERVER_PATH)/$(JVMDTRACE_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
412 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
413 |
|
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
414 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/64/$(JVMDTRACE_DEBUGINFO_NAME): $(HOTSPOT_SERVER_PATH)/64/$(JVMDTRACE_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
415 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
416 |
|
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
417 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/$(JVM_DEBUGINFO_NAME): $(HOTSPOT_SERVER_PATH)/$(JVM_DEBUGINFO_NAME) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
418 |
$(install-import-file) |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
419 |
endif |
c315c8424ce2
7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents:
9035
diff
changeset
|
420 |
|
2 | 421 |
$(LIB_LOCATION)/$(SERVER_LOCATION)/Xusage.txt : $(HOTSPOT_SERVER_PATH)/Xusage.txt |
422 |
$(install-import-file) |
|
8792
cd1dceb2d665
7027897: Build support for client-VM only configurations
dholmes
parents:
8018
diff
changeset
|
423 |
endif |
2 | 424 |
|
425 |
$(LIB_LOCATION)/$(CLIENT_LOCATION)/Xusage.txt : $(HOTSPOT_CLIENT_PATH)/Xusage.txt |
|
426 |
$(install-import-file) |
|
427 |
||
3111
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
428 |
$(LIB_LOCATION)/$(KERNEL_LOCATION)/Xusage.txt : $(HOTSPOT_KERNEL_PATH)/Xusage.txt |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
429 |
$(install-file) |
fefdeafb7ab9
6797688: Umbrella: Merge all JDK 6u4 - 6u12 deployment code into JDK7
herrick
parents:
2301
diff
changeset
|
430 |
|
2 | 431 |
# |
7666
7b994e3dd41d
7008723: Remove binary plugs creation and use from openjdk
ohair
parents:
6378
diff
changeset
|
432 |
# Specific to non-OpenJDK building |
2 | 433 |
# |
7666
7b994e3dd41d
7008723: Remove binary plugs creation and use from openjdk
ohair
parents:
6378
diff
changeset
|
434 |
ifndef OPENJDK |
2 | 435 |
|
436 |
INTERNAL_IMPORT_LIST += \ |
|
437 |
$(LIBDIR)/security/US_export_policy.jar \ |
|
438 |
$(LIBDIR)/security/local_policy.jar \ |
|
439 |
$(LIBDIR)/jce.jar |
|
440 |
||
441 |
$(LIBDIR)/jce.jar: \ |
|
442 |
$(BUILDDIR)/closed/tools/crypto/jce/jce.jar |
|
8583
15dea0fdc2ea
7025631: Remove the modules build support from jdk 7
mchung
parents:
8018
diff
changeset
|
443 |
$(install-file) |
2 | 444 |
$(LIBDIR)/security/US_export_policy.jar: \ |
445 |
$(BUILDDIR)/closed/tools/crypto/jce/US_export_policy.jar |
|
446 |
$(install-file) |
|
447 |
$(LIBDIR)/security/local_policy.jar: \ |
|
448 |
$(BUILDDIR)/closed/tools/crypto/jce/local_policy.jar |
|
449 |
$(install-file) |
|
450 |
||
451 |
endif # OPENJDK |
|
452 |
||
453 |
ADDJSUM_JARFILE = $(BUILDTOOLJARDIR)/addjsum.jar |
|
454 |
||
455 |
# Construct classlist file |
|
456 |
$(LIBDIR)/classlist: \ |
|
457 |
$(CLASSSHARINGDATA_DIR)/classlist.$(PLATFORM) \ |
|
458 |
$(ADDJSUM_JARFILE) |
|
459 |
@$(prep-target) |
|
460 |
@$(RM) -f $@.temp |
|
461 |
$(BOOT_JAVA_CMD) -jar $(ADDJSUM_JARFILE) \ |
|
462 |
$(CLASSSHARINGDATA_DIR)/classlist.$(PLATFORM) $@.temp |
|
463 |
$(MV) $@.temp $@ |
|
464 |
||
465 |
# Import internal files (ones that are stashed in this source tree) |
|
466 |
import_internal_files : $(INTERNAL_IMPORT_LIST) |
|
467 |
||
468 |
# Import files from the JDK that we are not building |
|
469 |
import_files: $(IMPORT_LIST) |
|
470 |
||
471 |
# Get component information variables and rules |
|
472 |
include $(BUILDDIR)/common/internal/ImportComponents.gmk |
|
473 |
||
474 |
# Security files we need to import |
|
475 |
SEC_FILES_ZIP=$(ABS_BUILDDIR)/tools/crypto/sec-bin.zip |
|
476 |
SEC_FILES_WIN_ZIP=$(ABS_BUILDDIR)/tools/crypto/sec-windows-bin.zip |
|
477 |
JGSS_WIN32_FILES_ZIP=$(ABS_BUILDDIR)/tools/crypto/jgss-windows-i586-bin.zip |
|
478 |
JGSS_WIN64_FILES_ZIP=$(ABS_BUILDDIR)/tools/crypto/jgss-windows-x64-bin.zip |
|
479 |
||
480 |
# Unzip zip file $2 into directory $1 (if $2 exists) |
|
481 |
# Warning: $2 must be absolute path not relative |
|
482 |
define SecUnzipper |
|
483 |
if [ -f $2 ] ; then \ |
|
484 |
$(MKDIR) -p $1; \ |
|
485 |
$(ECHO) "( $(CD) $1 && $(UNZIP) -o $2 )"; \ |
|
486 |
( $(CD) $1 && $(UNZIP) -o $2 ); \ |
|
487 |
fi |
|
488 |
endef |
|
489 |
||
490 |
# If sec-bin exists, unpack it into the build directory |
|
491 |
# Also, the library recompile build indirectly depends on two SSL classes, |
|
492 |
# so copy those as well FIXUP |
|
493 |
# if sec-windows-bin exists, unpack it into the build directory |
|
494 |
# if JGSS files exists, unpack it into the build directory |
|
495 |
$(TEMPDIR)/security_imported: |
|
496 |
@$(prep-target) |
|
497 |
@$(call SecUnzipper,$(OUTPUTDIR),$(SEC_FILES_ZIP)) |
|
498 |
ifeq ($(PLATFORM), windows) |
|
499 |
@$(call SecUnzipper,$(OUTPUTDIR),$(SEC_FILES_WIN_ZIP)) |
|
500 |
endif |
|
501 |
ifeq ($(PLATFORM), windows) |
|
502 |
ifeq ($(ARCH_DATA_MODEL), 32) |
|
503 |
@$(call SecUnzipper,$(OUTPUTDIR),$(JGSS_WIN32_FILES_ZIP)) |
|
504 |
else |
|
505 |
@$(call SecUnzipper,$(OUTPUTDIR),$(JGSS_WIN64_FILES_ZIP)) |
|
506 |
endif |
|
507 |
endif |
|
508 |
@$(ECHO) "Imported on `$(DATE)`" > $@ |
|
509 |
||
510 |
# Import all files from other components |
|
511 |
$(TEMPDIR)/components_imported: |
|
512 |
@$(prep-target) |
|
513 |
$(call import-component-binaries,$(ABS_OUTPUTDIR)) |
|
514 |
$(call import-component-sources,$(IMPORTSRCDIR)) |
|
515 |
$(call import-component-docs,$(IMPORTDOCDIR)) |
|
516 |
$(call import-component-classes,$(CLASSDESTDIR)) |
|
517 |
@$(ECHO) "Imported on `$(DATE)`" > $@ |
|
518 |
||
519 |
# Do pretty much everything |
|
520 |
build : import_files \ |
|
521 |
import_internal_files \ |
|
522 |
$(TEMPDIR)/components_imported \ |
|
523 |
$(TEMPDIR)/security_imported |
|
524 |
||
525 |
# Clean up what we imported (except for component files) |
|
526 |
clean clobber:: |
|
527 |
$(RM) $(IMPORT_LIST) |
|
528 |
$(RM) $(INTERNAL_IMPORT_LIST) |
|
529 |
$(call import-component-sources-clean,$(IMPORTSRCDIR)) |
|
530 |
$(call import-component-docs-clean,$(IMPORTDOCDIR)) |
|
531 |
$(call import-component-classes-clean,$(CLASSDESTDIR)) |
|
532 |
$(RM) $(TEMPDIR)/components_imported |
|
533 |
$(RM) $(TEMPDIR)/security_imported |
|
534 |
||
535 |
.PHONY: import_files import_internal_files |
|
536 |