author | jiangli |
Tue, 26 Jun 2012 19:08:44 -0400 | |
changeset 13282 | 9872915dd78d |
parent 12892 | 3ef14bab6254 |
child 13164 | 72c5d01a857d |
permissions | -rw-r--r-- |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
2 |
# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
26 |
INCLUDEDIR = $(JDK_OUTPUTDIR)/include |
12892 | 27 |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
28 |
PLATFORM_INCLUDE = $(INCLUDEDIR)/$(PLATFORM) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
29 |
|
12892 | 30 |
ifeq ($(PLATFORM), windows) |
31 |
PLATFORM_INCLUDE = $(INCLUDEDIR)/win32 |
|
32 |
else ifeq ($(PLATFORM), macosx) |
|
33 |
PLATFORM_INCLUDE = $(INCLUDEDIR)/darwin |
|
34 |
endif |
|
35 |
||
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
36 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
37 |
# Copy exported header files to outputdir. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
38 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
39 |
H_TARGET_FILES =$(INCLUDEDIR)/jdwpTransport.h \ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
40 |
$(INCLUDEDIR)/jni.h \ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
41 |
$(INCLUDEDIR)/jvmti.h \ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
42 |
$(INCLUDEDIR)/jvmticmlr.h \ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
43 |
$(INCLUDEDIR)/classfile_constants.h \ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
44 |
$(INCLUDEDIR)/jawt.h \ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
45 |
$(PLATFORM_INCLUDE)/jni_md.h \ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
46 |
$(PLATFORM_INCLUDE)/jawt_md.h |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
47 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
48 |
$(INCLUDEDIR)/%.h: $(JDK_TOPDIR)/src/share/javavm/export/%.h |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
49 |
$(MKDIR) -p $(@D) |
12892 | 50 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
51 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
52 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
53 |
$(PLATFORM_INCLUDE)/%.h: $(JDK_TOPDIR)/src/$(LEGACY_HOST_OS_API)/javavm/export/%.h |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
54 |
$(MKDIR) -p $(@D) |
12892 | 55 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
56 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
57 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
58 |
COPY_FILES = $(H_TARGET_FILES) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
59 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
60 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
61 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
62 |
LIBDIR = $(JDK_OUTPUTDIR)/lib |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
63 |
SERVICETAG_LIBDIR = $(LIBDIR)/servicetag |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
64 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
65 |
$(SERVICETAG_LIBDIR)/jdk_header.png: $(JDK_TOPDIR)/src/share/classes/com/sun/servicetag/resources/jdk_header.png |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
66 |
$(MKDIR) -p $(@D) |
12892 | 67 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
68 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
69 |
$(CHMOD) 444 $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
70 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
71 |
COPY_FILES += $(SERVICETAG_LIBDIR)/jdk_header.png |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
72 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
73 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
74 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
75 |
MGMT_LIBDIR = $(LIBDIR)/management |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
76 |
MGMT_LIB_SRC = $(JDK_TOPDIR)/src/share/lib/management |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
77 |
MGMT_SRC_FILES = $(wildcard $(MGMT_LIB_SRC)/*) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
78 |
MGMT_TARGET_FILES = $(subst $(MGMT_LIB_SRC),$(MGMT_LIBDIR),$(MGMT_SRC_FILES)) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
79 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
80 |
$(MGMT_LIBDIR)/management.properties: $(MGMT_LIB_SRC)/management.properties |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
81 |
$(MKDIR) -p $(@D) |
12892 | 82 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
83 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
84 |
$(CHMOD) 644 $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
85 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
86 |
$(MGMT_LIBDIR)/%: $(MGMT_LIB_SRC)/% |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
87 |
$(MKDIR) -p $(@D) |
12892 | 88 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
89 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
90 |
$(CHMOD) 444 $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
91 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
92 |
COPY_FILES += $(MGMT_TARGET_FILES) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
93 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
94 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
95 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
96 |
LOGGING_LIB_SRC = $(JDK_TOPDIR)/src/share/lib |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
97 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
98 |
$(LIBDIR)/logging.properties: $(LOGGING_LIB_SRC)/logging.properties |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
99 |
$(MKDIR) -p $(@D) |
12892 | 100 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
101 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
102 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
103 |
COPY_FILES += $(LIBDIR)/logging.properties |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
104 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
105 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
106 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
107 |
# Copy property files from sun/print to LIBDIR |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
108 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
109 |
PSFONTPROPFILE_SRC_DIR = $(JDK_TOPDIR)/src/share/classes/sun/print |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
110 |
PSFONTPROPFILE_SRCS = $(wildcard $(PSFONTPROPFILE_SRC_DIR)/*.properties*) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
111 |
PSFONTPROPFILE_TARGET_FILES = $(subst $(PSFONTPROPFILE_SRC_DIR),$(LIBDIR),$(PSFONTPROPFILE_SRCS)) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
112 |
|
12892 | 113 |
$(LIBDIR)/%: $(PSFONTPROPFILE_SRC_DIR)/% |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
114 |
$(MKDIR) -p $(@D) |
12892 | 115 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
116 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
117 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
118 |
COPY_FILES += $(PSFONTPROPFILE_TARGET_FILES) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
119 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
120 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
121 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
122 |
# Copy flavormap.properties, cursor.properties and cursors gif files to LIBDIR |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
123 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
124 |
PLATFORM_LIB_SRC = $(JDK_TOPDIR)/src/$(LEGACY_HOST_OS_API)/lib |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
125 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
126 |
$(LIBDIR)/flavormap.properties: $(PLATFORM_LIB_SRC)/flavormap.properties |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
127 |
$(MKDIR) -p $(@D) |
12892 | 128 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
129 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
130 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
131 |
COPY_FILES += $(LIBDIR)/flavormap.properties |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
132 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
133 |
CURSORS_DEST_DIR = $(LIBDIR)/images/cursors |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
134 |
CURSORS_PLATFORM_LIB_SRC = $(PLATFORM_LIB_SRC)/images/cursors |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
135 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
136 |
$(CURSORS_DEST_DIR)/cursors.properties: $(CURSORS_PLATFORM_LIB_SRC)/cursors.properties |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
137 |
$(MKDIR) -p $(@D) |
12892 | 138 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
139 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
140 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
141 |
COPY_FILES += $(CURSORS_DEST_DIR)/cursors.properties |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
142 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
143 |
CURSORS_LIB_SRC = $(JDK_TOPDIR)/src/share/lib/images/cursors |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
144 |
ifeq ($(PLATFORM), windows) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
145 |
CURSORS_SRC_FILES = $(CURSORS_LIB_SRC)/invalid32x32.gif $(wildcard $(CURSORS_LIB_SRC)/win32_*.gif) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
146 |
else # PLATFORM |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
147 |
CURSORS_SRC_FILES = $(CURSORS_LIB_SRC)/invalid32x32.gif $(wildcard $(CURSORS_LIB_SRC)/motif_*.gif) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
148 |
endif # PLATFORM |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
149 |
CURSORS_TARGET_FILES = $(subst $(CURSORS_LIB_SRC),$(CURSORS_DEST_DIR),$(CURSORS_SRC_FILES)) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
150 |
|
12892 | 151 |
$(CURSORS_DEST_DIR)/%: $(CURSORS_LIB_SRC)/% |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
152 |
$(MKDIR) -p $(@D) |
12892 | 153 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
154 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
155 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
156 |
COPY_FILES += $(CURSORS_TARGET_FILES) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
157 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
158 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
159 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
160 |
CONTENT_TYPES_SRC=$(JDK_TOPDIR)/src/$(LEGACY_HOST_OS_API)/lib |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
161 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
162 |
$(LIBDIR)/content-types.properties: $(CONTENT_TYPES_SRC)/content-types.properties |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
163 |
$(MKDIR) -p $(@D) |
12892 | 164 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
165 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
166 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
167 |
COPY_FILES += $(LIBDIR)/content-types.properties |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
168 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
169 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
170 |
|
12892 | 171 |
CALENDARS_SRC := $(JDK_TOPDIR)/src/share/lib |
172 |
||
173 |
$(LIBDIR)/calendars.properties: $(CALENDARS_SRC)/calendars.properties |
|
174 |
$(MKDIR) -p $(@D) |
|
175 |
$(RM) -f $@ |
|
176 |
$(CP) $< $@ |
|
177 |
||
178 |
COPY_FILES += $(LIBDIR)/calendars.properties |
|
179 |
||
180 |
########################################################################################## |
|
181 |
||
182 |
ifeq ($(PLATFORM),windows) |
|
183 |
||
184 |
TZMAPPINGS_SRC := $(JDK_TOPDIR)/src/$(LEGACY_HOST_OS_API)/lib |
|
185 |
||
186 |
$(LIBDIR)/tzmappings: $(TZMAPPINGS_SRC)/tzmappings |
|
187 |
$(MKDIR) -p $(@D) |
|
188 |
$(RM) -f $@ |
|
189 |
$(CP) $< $@ |
|
190 |
||
191 |
COPY_FILES += $(LIBDIR)/tzmappings |
|
192 |
||
193 |
endif |
|
194 |
||
195 |
########################################################################################## |
|
196 |
||
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
197 |
ICCPROFILE_DEST_DIR := $(LIBDIR)/cmm |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
198 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
199 |
ifdef OPENJDK |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
200 |
ICCPROFILE_SRC_DIR := $(JDK_TOPDIR)/src/share/lib/cmm/lcms |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
201 |
else |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
202 |
ICCPROFILE_SRC_DIR := $(JDK_TOPDIR)/src/closed/share/lib/cmm/kcms |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
203 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
204 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
205 |
ICCPROFILE_SRCS:=$(wildcard $(ICCPROFILE_SRC_DIR)/*.pf) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
206 |
ICCPROFILE_TARGET_FILES:=$(subst $(ICCPROFILE_SRC_DIR),$(ICCPROFILE_DEST_DIR),$(ICCPROFILE_SRCS)) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
207 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
208 |
$(ICCPROFILE_DEST_DIR)%.pf: $(ICCPROFILE_SRC_DIR)%.pf |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
209 |
$(MKDIR) -p $(@D) |
12892 | 210 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
211 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
212 |
$(CHMOD) 444 $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
213 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
214 |
COPY_FILES += $(ICCPROFILE_TARGET_FILES) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
215 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
216 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
217 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
218 |
#make sure freetype dll will be available at runtime as well as link time |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
219 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
220 |
#NB: Default freetype build system uses -h linker option and |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
221 |
# result .so contains hardcoded library name that is later |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
222 |
# used for adding dependencies to other objects |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
223 |
# (e.g. libfontmanager.so). |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
224 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
225 |
# It is not obvious how to extract that hardcoded name (libfreetype.so.6) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
226 |
# without overcomplicating logic here. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
227 |
# To workaround this we hardcode .6 suffix for now. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
228 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
229 |
# Note that .so.6 library will not be found by System.loadLibrary() |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
230 |
# but fortunately we need to load FreeType library explicitly |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
231 |
# on windows only |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
232 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
233 |
#TODO: rework this to avoid hardcoding library name in the makefile |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
234 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
235 |
ifdef OPENJDK |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
236 |
ifeq ($(PLATFORM), windows) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
237 |
FREETYPE_LIB = $(JDK_OUTPUTDIR)/bin/$(call SHARED_LIBRARY,freetype) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
238 |
else |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
239 |
ifeq ($(USING_SYSTEM_FT_LIB), false) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
240 |
FREETYPE_LIB = $(JDK_OUTPUTDIR)/lib/$(LIBARCH)/$(call SHARED_LIBRARY,freetype).6 |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
241 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
242 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
243 |
|
12892 | 244 |
$(FREETYPE_LIB): $(FREETYPE2_LIB_PATH)/$(call SHARED_LIBRARY,freetype) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
245 |
$(CP) $(FREETYPE2_LIB_PATH)/$(call SHARED_LIBRARY,freetype) $@ |
12892 | 246 |
ifeq ($(BUILD_OS), windows) |
247 |
$(CHMOD) +rx $@ |
|
248 |
endif |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
249 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
250 |
COPY_FILES += $(FREETYPE_LIB) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
251 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
252 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
253 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
254 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
255 |
# Copy msvcr100.dll on windows |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
256 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
257 |
ifeq ($(PLATFORM),windows) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
258 |
MSVCRNN_TARGET := $(JDK_OUTPUTDIR)/bin/$(notdir $(MSVCRNN_DLL)) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
259 |
$(MSVCRNN_TARGET): $(MSVCRNN_DLL) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
260 |
$(MKDIR) -p $(@D) |
12892 | 261 |
$(RM) -f $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
262 |
$(CP) $< $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
263 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
264 |
COPY_FILES += $(MSVCRNN_TARGET) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
265 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
266 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
267 |
########################################################################################## |
12892 | 268 |
|
269 |
HPROF_SRC=$(JDK_TOPDIR)/src/share/demo/jvmti/hprof/jvm.hprof.txt |
|
270 |
||
271 |
$(LIBDIR)/jvm.hprof.txt : $(HPROF_SRC) |
|
272 |
$(MKDIR) -p $(@D) |
|
273 |
$(RM) -f $@ |
|
274 |
$(CP) $< $@ |
|
275 |
||
276 |
COPY_FILES += $(LIBDIR)/jvm.hprof.txt |
|
277 |
||
278 |
########################################################################################## |
|
279 |
||
280 |
# |
|
281 |
# How to install jvm.cfg. |
|
282 |
# |
|
283 |
ifeq ($(JVM_VARIANT_ZERO), true) |
|
284 |
JVMCFG_ARCH := zero |
|
285 |
else |
|
286 |
JVMCFG_ARCH := $(ARCH) |
|
287 |
endif |
|
288 |
||
289 |
ifeq ($(PLATFORM),macosx) |
|
290 |
ifeq ($(JVMCFG_ARCH),amd64) |
|
291 |
JVMCFG_ARCH := x86_64 |
|
292 |
endif |
|
293 |
JVMCFG_SRC := $(JDK_TOPDIR)/src/macosx/bin/$(JVMCFG_ARCH)/jvm.cfg |
|
294 |
JVMCFG_DIR := $(JDK_OUTPUTDIR)/lib |
|
295 |
else |
|
296 |
JVMCFG_SRC := $(JDK_TOPDIR)/src/$(LEGACY_HOST_OS_API)/bin/$(JVMCFG_ARCH)/jvm.cfg |
|
297 |
JVMCFG_DIR := $(JDK_OUTPUTDIR)/lib/$(LIBARCH) |
|
298 |
endif |
|
299 |
||
300 |
JVMCFG := $(JVMCFG_DIR)/jvm.cfg |
|
301 |
||
302 |
||
303 |
ifeq ($(ARCH_DATA_MODEL),32) |
|
304 |
# On 32 bit machines, we can have client and/or server libjvms installed. |
|
305 |
# Since the currently committed jvm.cfg expects clientANDserver, we need |
|
306 |
# to patch the jvm.cfg when we have built only a client or only a server. |
|
307 |
# This should also support -kernel, -zero and -zeroshark. |
|
308 |
ifeq ($(JVM_VARIANTS),$(COMMA)client$(COMMA)) |
|
309 |
# Create a patched jvm.cfg to use -client by default and alias -server to -client. |
|
310 |
$(JVMCFG): |
|
311 |
$(MKDIR) -p $(@D) |
|
312 |
$(RM) -f $(JVMCFG) |
|
313 |
$(PRINTF) "-client KNOWN\n">$(JVMCFG) |
|
314 |
$(PRINTF) "-server IGNORE\n">>$(JVMCFG) |
|
315 |
$(PRINTF) "-hotspot ALIASED_TO -client\n">>$(JVMCFG) |
|
316 |
$(PRINTF) "-classic WARN\n">>$(JVMCFG) |
|
317 |
$(PRINTF) "-native ERROR\n">>$(JVMCFG) |
|
318 |
$(PRINTF) "-green ERROR\n">>$(JVMCFG) |
|
319 |
||
320 |
else |
|
321 |
ifeq ($(JVM_VARIANTS),$(COMMA)server$(COMMA)) |
|
322 |
# Create a patched jvm.cfg to use -server by default and alias -client to -server. |
|
323 |
||
324 |
$(JVMCFG): |
|
325 |
$(MKDIR) -p $(@D) |
|
326 |
$(RM) -f $(JVMCFG) |
|
327 |
$(PRINTF) "-server KNOWN\n">$(JVMCFG) |
|
328 |
$(PRINTF) "-client IGNORE\n">>$(JVMCFG) |
|
329 |
$(PRINTF) "-hotspot IGNORE\n">>$(JVMCFG) |
|
330 |
$(PRINTF) "-classic WARN\n">>$(JVMCFG) |
|
331 |
$(PRINTF) "-native ERROR\n">>$(JVMCFG) |
|
332 |
$(PRINTF) "-green ERROR\n">>$(JVMCFG) |
|
333 |
else |
|
334 |
# Use the default jvm.cfg for this 32 bit setup. |
|
335 |
$(JVMCFG): $(JVMCFG_SRC) |
|
336 |
$(MKDIR) -p $(@D) |
|
337 |
$(RM) -f $@ |
|
338 |
$(CP) $< $@ |
|
339 |
endif |
|
340 |
endif |
|
341 |
else |
|
342 |
# Use the default jvm.cfg for this 64 bit setup. |
|
343 |
$(JVMCFG): $(JVMCFG_SRC) |
|
344 |
$(MKDIR) -p $(@D) |
|
345 |
$(RM) -f $@ |
|
346 |
$(CP) $< $@ |
|
347 |
endif |
|
348 |
||
349 |
COPY_FILES += $(JVMCFG) |
|
350 |
||
351 |
########################################################################################## |
|
352 |
||
353 |
PROPS_SRC := $(JDK_TOPDIR)/src/share/lib/security/java.security |
|
354 |
PROPS_DST := $(JDK_OUTPUTDIR)/lib/security/java.security |
|
355 |
||
356 |
ifeq ($(PLATFORM), solaris) |
|
357 |
PROPS_SRC := $(JDK_TOPDIR)/src/share/lib/security/java.security-solaris |
|
358 |
endif |
|
359 |
||
360 |
ifeq ($(PLATFORM), windows) |
|
361 |
PROPS_SRC := $(JDK_TOPDIR)/src/share/lib/security/java.security-windows |
|
362 |
endif |
|
363 |
||
364 |
ifeq ($(PLATFORM), macosx) |
|
365 |
PROPS_SRC := $(JDK_TOPDIR)/src/share/lib/security/java.security-macosx |
|
366 |
endif |
|
367 |
||
368 |
$(PROPS_DST): $(PROPS_SRC) |
|
369 |
$(MKDIR) -p $(@D) |
|
370 |
$(RM) -f $@ |
|
371 |
$(CP) $< $@ |
|
372 |
||
373 |
COPY_FILES += $(PROPS_DST) |
|
374 |
||
375 |
########################################################################################## |
|
376 |
||
377 |
POLICY_SRC := $(JDK_TOPDIR)/src/share/lib/security/java.policy |
|
378 |
POLICY_DST := $(JDK_OUTPUTDIR)/lib/security/java.policy |
|
379 |
||
380 |
$(POLICY_DST): $(POLICY_SRC) |
|
381 |
$(MKDIR) -p $(@D) |
|
382 |
$(RM) -f $@ |
|
383 |
$(CP) $< $@ |
|
384 |
||
385 |
COPY_FILES += $(POLICY_DST) |
|
386 |
||
387 |
########################################################################################## |
|
388 |
||
389 |
CACERTS_SRC := $(CACERTS_FILE) |
|
390 |
CACERTS_DST := $(JDK_OUTPUTDIR)/lib/security/cacerts |
|
391 |
||
392 |
$(CACERTS_DST): $(CACERTS_SRC) |
|
393 |
$(MKDIR) -p $(@D) |
|
394 |
$(RM) -f $@ |
|
395 |
$(CP) $< $@ |
|
396 |
||
397 |
COPY_FILES += $(CACERTS_DST) |
|
398 |
||
399 |
########################################################################################## |
|
400 |
||
401 |
ifndef OPENJDK |
|
402 |
||
403 |
BLACKLIST_SRC := $(JDK_TOPDIR)/src/closed/share/lib/security/blacklist |
|
404 |
BLACKLIST_DST := $(JDK_OUTPUTDIR)/lib/security/blacklist |
|
405 |
||
406 |
TRUSTEDLIBS_SRC := $(JDK_TOPDIR)/src/closed/share/lib/security/trusted.libraries |
|
407 |
TRUSTEDLIBS_DST := $(JDK_OUTPUTDIR)/lib/security/trusted.libraries |
|
408 |
||
409 |
$(BLACKLIST_DST): $(BLACKLIST_SRC) |
|
410 |
$(MKDIR) -p $(@D) |
|
411 |
$(RM) -f $@ |
|
412 |
$(CP) $< $@ |
|
413 |
||
414 |
COPY_FILES += $(BLACKLIST_DST) |
|
415 |
||
416 |
$(TRUSTEDLIBS_DST): $(TRUSTEDLIBS_SRC) |
|
417 |
$(MKDIR) -p $(@D) |
|
418 |
$(RM) -f $@ |
|
419 |
$(CP) $< $@ |
|
420 |
||
421 |
COPY_FILES += $(TRUSTEDLIBS_DST) |
|
422 |
||
423 |
endif |
|
424 |
||
425 |
########################################################################################## |
|
426 |
||
427 |
ifndef OPENJDK |
|
428 |
||
429 |
SHARED_FONTS_SRC_DIR := $(JDK_TOPDIR)/src/closed/share/lib/fonts |
|
430 |
SHARED_FONTS_DST_DIR := $(JDK_OUTPUTDIR)/lib/fonts |
|
431 |
SHARED_FONTS_FILES := \ |
|
432 |
LucidaTypewriterRegular.ttf \ |
|
433 |
LucidaTypewriterBold.ttf \ |
|
434 |
LucidaBrightRegular.ttf \ |
|
435 |
LucidaBrightDemiBold.ttf \ |
|
436 |
LucidaBrightItalic.ttf \ |
|
437 |
LucidaBrightDemiItalic.ttf \ |
|
438 |
LucidaSansRegular.ttf \ |
|
439 |
LucidaSansDemiBold.ttf \ |
|
440 |
||
441 |
SHARED_FONTS_SRC := $(foreach F,$(SHARED_FONTS_FILES),$(SHARED_FONTS_SRC_DIR)/$(F)) |
|
442 |
SHARED_FONTS_DST := $(foreach F,$(SHARED_FONTS_FILES),$(SHARED_FONTS_DST_DIR)/$(F)) |
|
443 |
||
444 |
$(SHARED_FONTS_DST_DIR)/%.ttf : $(SHARED_FONTS_SRC_DIR)/%.ttf |
|
445 |
$(MKDIR) -p $(@D) |
|
446 |
$(RM) $@ |
|
447 |
$(CP) $< $@ |
|
448 |
||
449 |
$(SHARED_FONTS_DST_DIR)/fonts.dir : $(JDK_TOPDIR)/src/solaris/classes/sun/awt/motif/java.fonts.dir |
|
450 |
$(MKDIR) -p $(@D) |
|
451 |
$(RM) $@ |
|
452 |
$(CP) $< $@ |
|
453 |
||
454 |
COPY_FILES += $(SHARED_FONTS_DST) $(SHARED_FONTS_DST_DIR)/fonts.dir |
|
455 |
||
456 |
ifeq ($(PLATFORM), linux) |
|
457 |
||
458 |
# The oblique fonts are only needed/wanted on Linux. |
|
459 |
||
460 |
OBL_FONTS_SRC_DIR := $(JDK_TOPDIR)/src/closed/share/lib/fonts/oblique |
|
461 |
OBL_FONTS_DST_DIR := $(JDK_OUTPUTDIR)/lib/oblique-fonts |
|
462 |
OBL_FONTS_FILES := LucidaTypewriterOblique.ttf LucidaTypewriterBoldOblique.ttf \ |
|
463 |
LucidaSansOblique.ttf LucidaSansDemiOblique.ttf |
|
464 |
||
465 |
OBL_FONTS_SRC := $(foreach F,$(OBL_FONTS_FILES),$(OBL_FONTS_SRC_DIR)/$(F)) |
|
466 |
OBL_FONTS_DST := $(foreach F,$(OBL_FONTS_FILES),$(OBL_FONTS_DST_DIR)/$(F)) |
|
467 |
||
468 |
$(OBL_FONTS_DST_DIR)/%.ttf : $(OBL_FONTS_SRC_DIR)/%.ttf |
|
469 |
$(MKDIR) -p $(@D) |
|
470 |
$(RM) $@ |
|
471 |
$(CP) $< $@ |
|
472 |
||
473 |
$(OBL_FONTS_DST_DIR)/fonts.dir : $(JDK_TOPDIR)/src/solaris/classes/sun/awt/motif/java.oblique-fonts.dir |
|
474 |
$(MKDIR) -p $(@D) |
|
475 |
$(RM) $@ |
|
476 |
$(CP) $< $@ |
|
477 |
||
478 |
COPY_FILES += $(OBL_FONTS_DST) $(OBL_FONTS_DST_DIR)/fonts.dir |
|
479 |
||
480 |
endif # linux |
|
481 |
endif # OPENJDK |
|
482 |
||
483 |
########################################################################################## |
|
484 |
||
485 |
ifndef OPENJDK |
|
486 |
||
487 |
JS_RESOURCES_FILES := Messages.properties Messages_fr.properties |
|
488 |
JS_RESOURCES_SRC_DIR := $(JDK_TOPDIR)/src/closed/share/classes/sun/org/mozilla/javascript/internal/resources |
|
489 |
JS_RESOURCES_DST_DIR := $(JDK_OUTPUTDIR)/classes/sun/org/mozilla/javascript/internal/resources |
|
490 |
||
491 |
JS_RESOURCES_SRC := $(foreach F,$(JS_RESOURCES_FILES),$(JS_RESOURCES_SRC_DIR)/$(F)) |
|
492 |
JS_RESOURCES_DST := $(foreach F,$(JS_RESOURCES_FILES),$(JS_RESOURCES_DST_DIR)/$(F)) |
|
493 |
||
494 |
$(JS_RESOURCES_DST_DIR)/% : $(JS_RESOURCES_SRC_DIR)/% |
|
495 |
$(MKDIR) -p $(@D) |
|
496 |
$(RM) $@ |
|
497 |
$(CP) $< $@ |
|
498 |
||
499 |
COPY_FILES += $(JS_RESOURCES_DST) |
|
500 |
||
501 |
endif |
|
502 |
||
503 |
########################################################################################## |
|
504 |
||
505 |
ifndef OPENJDK |
|
506 |
||
507 |
# |
|
508 |
# Solaris X11 Direct Graphics Access library |
|
509 |
# |
|
510 |
||
511 |
_DGALIBS_sparc = \ |
|
512 |
libxinerama.so \ |
|
513 |
libjdgaSUNWcg6.so \ |
|
514 |
libjdgaSUNWffb.so \ |
|
515 |
libjdgaSUNWm64.so \ |
|
516 |
libjdgaSUNWafb.so |
|
517 |
||
518 |
_DGALIBS_sparcv9 = \ |
|
519 |
libxinerama.so \ |
|
520 |
libjdgaSUNWcg6.so \ |
|
521 |
libjdgaSUNWffb.so \ |
|
522 |
libjdgaSUNWm64.so \ |
|
523 |
libjdgaSUNWafb.so |
|
524 |
||
525 |
_DGALIBS_i586 = # no i586 library yet |
|
526 |
||
527 |
_DGALIBS_amd64 = # no amd64 library yet |
|
528 |
||
529 |
DGALIBS = $(_DGALIBS_$(ARCH):%=$(JDK_OUTPUTDIR)/lib/$(LIBARCH)/%) |
|
530 |
||
531 |
$(JDK_OUTPUTDIR)/lib/$(LIBARCH)/libxinerama.so: $(JDK_TOPDIR)/src/closed/solaris/lib/$(ARCH)/libxinerama.so |
|
532 |
$(MKDIR) -p $(@D) |
|
533 |
$(RM) $@ |
|
534 |
$(CP) $< $@ |
|
535 |
||
536 |
$(JDK_OUTPUTDIR)/lib/$(LIBARCH)/libjdgaSUNW%.so: $(JDK_TOPDIR)/src/closed/solaris/lib/$(ARCH)/libjdgaSUNW%.so |
|
537 |
$(MKDIR) -p $(@D) |
|
538 |
$(RM) $@ |
|
539 |
$(CP) $< $@ |
|
540 |
||
541 |
$(JDK_OUTPUTDIR)/lib/$(LIBARCH)/libjdgaSUNWafb.so: $(JDK_OUTPUTDIR)/lib/$(LIBARCH)/libjdgaSUNWffb.so |
|
542 |
$(MKDIR) -p $(@D) |
|
543 |
$(RM) $@ |
|
544 |
$(LN) -s $< $@ |
|
545 |
||
546 |
COPY_FILES += $(DGALIBS) |
|
547 |
||
548 |
endif |
|
549 |
||
550 |
########################################################################################## |
|
551 |
||
552 |
ifeq ($(PLATFORM), solaris) |
|
553 |
||
554 |
SUNPKCS11_CFG_SRC := $(JDK_TOPDIR)/src/share/lib/security/sunpkcs11-solaris.cfg |
|
555 |
SUNPKCS11_CFG_DST := $(JDK_OUTPUTDIR)/lib/security/sunpkcs11-solaris.cfg |
|
556 |
||
557 |
$(SUNPKCS11_CFG_DST) : $(SUNPKCS11_CFG_SRC) |
|
558 |
$(MKDIR) -p $(@D) |
|
559 |
$(RM) $@ |
|
560 |
$(CP) $< $@ |
|
561 |
||
562 |
COPY_FILES += $(SUNPKCS11_CFG_DST) |
|
563 |
||
564 |
endif |
|
565 |
||
566 |
########################################################################################## |
|
567 |
||
568 |
ifndef OPENJDK |
|
569 |
ifeq ($(PLATFORM), solaris) |
|
570 |
||
571 |
UCRYPTO_CFG_SRC := $(JDK_TOPDIR)/src/closed/share/lib/security/ucrypto-solaris.cfg |
|
572 |
UCRYPTO_CFG_DST := $(JDK_OUTPUTDIR)/lib/security/ucrypto-solaris.cfg |
|
573 |
||
574 |
$(UCRYPTO_CFG_DST) : $(UCRYPTO_CFG_SRC) |
|
575 |
$(MKDIR) -p $(@D) |
|
576 |
$(RM) $@ |
|
577 |
$(CP) $< $@ |
|
578 |
||
579 |
COPY_FILES += $(UCRYPTO_CFG_DST) |
|
580 |
||
581 |
endif |
|
582 |
endif |
|
583 |
||
584 |
########################################################################################## |
|
585 |
||
586 |
$(JDK_OUTPUTDIR)/lib/sound.properties : $(JDK_TOPDIR)/src/share/lib/sound.properties |
|
587 |
$(MKDIR) -p $(@D) |
|
588 |
$(RM) $@ |
|
589 |
$(CP) $< $(@) |
|
590 |
||
591 |
COPY_FILES += $(JDK_OUTPUTDIR)/lib/sound.properties |
|
592 |
||
593 |
########################################################################################## |