author | herrick |
Wed, 13 Nov 2019 17:21:31 -0500 | |
branch | JDK-8200758-branch |
changeset 59126 | 4d58a35f3cfa |
parent 52804 | 28094715ae71 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
52804
28094715ae71
8214718: Update missing copyright year in build system
ihse
parents:
49537
diff
changeset
|
2 |
# Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved. |
25859 | 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 |
include CopyCommon.gmk |
|
49537
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
27 |
include Modules.gmk |
25859 | 28 |
|
47314 | 29 |
$(eval $(call IncludeCustomExtension, copy/Copy-java.desktop.gmk)) |
25859 | 30 |
|
31 |
################################################################################ |
|
32 |
||
47217 | 33 |
$(CONF_DST_DIR)/sound.properties: $(TOPDIR)/src/java.desktop/share/conf/sound.properties |
25859 | 34 |
$(call install-file) |
35 |
||
27565 | 36 |
TARGETS += $(CONF_DST_DIR)/sound.properties |
25859 | 37 |
|
38 |
################################################################################ |
|
39 |
# |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
40 |
# Copy property files from sun/print to LIB_DST_DIR |
25859 | 41 |
# |
47217 | 42 |
PSFONTPROPFILE_SRC_DIR := $(TOPDIR)/src/java.desktop/share/conf |
25859 | 43 |
PSFONTPROPFILE_SRCS := $(wildcard $(PSFONTPROPFILE_SRC_DIR)/psfont*.properties*) |
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
44 |
PSFONTPROPFILE_TARGET_FILES := $(subst $(PSFONTPROPFILE_SRC_DIR),$(LIB_DST_DIR),$(PSFONTPROPFILE_SRCS)) |
25859 | 45 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25859
diff
changeset
|
46 |
$(LIB_DST_DIR)/%: $(PSFONTPROPFILE_SRC_DIR)/% |
25859 | 47 |
$(call install-file) |
48 |
||
27565 | 49 |
TARGETS += $(PSFONTPROPFILE_TARGET_FILES) |
25859 | 50 |
|
51 |
################################################################################ |
|
49537
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
52 |
# |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
53 |
# Copy and filter the legal files depending on what 3rd party components are |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
54 |
# bundled or linked from the OS. |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
55 |
# |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
56 |
ifeq ($(USE_EXTERNAL_LIBJPEG), true) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
57 |
LEGAL_EXCLUDES += jpeg.md |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
58 |
endif |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
59 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
60 |
ifeq ($(USE_EXTERNAL_LIBGIF), true) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
61 |
LEGAL_EXCLUDES += giflib.md |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
62 |
endif |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
63 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
64 |
ifeq ($(USE_EXTERNAL_LIBPNG), true) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
65 |
LEGAL_EXCLUDES += libpng.md |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
66 |
endif |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
67 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
68 |
ifeq ($(USE_EXTERNAL_LCMS), true) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
69 |
LEGAL_EXCLUDES += lcms.md |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
70 |
endif |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
71 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
72 |
ifeq ($(FREETYPE_TO_USE), system) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
73 |
LEGAL_EXCLUDES += freetype.md |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
74 |
endif |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
75 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
76 |
$(eval $(call SetupCopyLegalFiles, COPY_LEGAL, \ |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
77 |
EXCLUDES := $(LEGAL_EXCLUDES), \ |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
78 |
)) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
79 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
80 |
TARGETS += $(COPY_LEGAL) |
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
81 |
|
149dc554808c
8199539: Provide a standard way for the build to filter un-needed legal .md files
erikj
parents:
49234
diff
changeset
|
82 |
################################################################################ |