author | jmasa |
Fri, 29 Aug 2014 08:14:19 -0700 | |
changeset 26331 | 8f17e084029b |
parent 23021 | b4b8495fd392 |
child 27565 | 729f9700483a |
permissions | -rw-r--r-- |
12892 | 1 |
# |
22595
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
2 |
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. |
12892 | 3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
GENDATA_FONT_CONFIG_DST := $(JDK_OUTPUTDIR)/lib |
|
27 |
||
23021 | 28 |
GENDATA_FONT_CONFIG_DATA_DIR := $(JDK_TOPDIR)/make/data/fontconfig |
29 |
ifndef OPENJDK |
|
30 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
|
31 |
GENDATA_FONT_CONFIG_DATA_DIR := $(JDK_TOPDIR)/make/closed/data/fontconfig |
|
13702 | 32 |
endif |
12892 | 33 |
endif |
34 |
||
23021 | 35 |
GENDATA_FONT_CONFIG_SRC_FILES := \ |
36 |
$(wildcard $(GENDATA_FONT_CONFIG_DATA_DIR)/$(OPENJDK_TARGET_OS).*) |
|
12892 | 37 |
|
38 |
||
20547 | 39 |
$(GENDATA_FONT_CONFIG_DST)/%.src: \ |
23021 | 40 |
$(GENDATA_FONT_CONFIG_DATA_DIR)/$(OPENJDK_TARGET_OS).% |
16636
1cc691bcfe50
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
14231
diff
changeset
|
41 |
$(call install-file) |
12892 | 42 |
|
20547 | 43 |
$(GENDATA_FONT_CONFIG_DST)/%.bfc: \ |
23021 | 44 |
$(GENDATA_FONT_CONFIG_DATA_DIR)/$(OPENJDK_TARGET_OS).%.properties \ |
45 |
$(BUILD_TOOLS) |
|
12892 | 46 |
$(MKDIR) -p $(@D) |
13702 | 47 |
$(RM) $@ |
12892 | 48 |
$(TOOL_COMPILEFONTCONFIG) $< $@ |
13164 | 49 |
$(CHMOD) 444 $@ |
12892 | 50 |
|
51 |
||
23021 | 52 |
GENDATA_FONT_CONFIGS := $(patsubst $(GENDATA_FONT_CONFIG_DATA_DIR)/$(OPENJDK_TARGET_OS).%, \ |
53 |
$(GENDATA_FONT_CONFIG_DST)/%.src, $(GENDATA_FONT_CONFIG_SRC_FILES)) |
|
54 |
GENDATA_BFONT_CONFIGS := $(patsubst $(GENDATA_FONT_CONFIG_DATA_DIR)/$(OPENJDK_TARGET_OS).%.properties, \ |
|
55 |
$(GENDATA_FONT_CONFIG_DST)/%.bfc, $(GENDATA_FONT_CONFIG_SRC_FILES)) |
|
12892 | 56 |
|
57 |
GENDATA_FONT_CONFIG := $(GENDATA_FONT_CONFIGS) $(GENDATA_BFONT_CONFIGS) |
|
58 |