jdk
74 строки · 2.9 Кб
1#
2# Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
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
26include GensrcCommon.gmk
27include GensrcProperties.gmk
28include Execute.gmk
29
30$(eval $(call SetupVersionProperties, JAVAC_VERSION, \
31com/sun/tools/javac/resources/version.properties))
32
33$(eval $(call SetupCompileProperties, COMPILE_PROPERTIES, \
34SRC_DIRS := $(TOPDIR)/src/$(MODULE)/share/classes, \
35EXTRA_FILES := $(JAVAC_VERSION), \
36CLASS := java.util.ListResourceBundle, \
37TYPE := langtools, \
38))
39
40TARGETS += $(COMPILE_PROPERTIES)
41
42################################################################################
43#
44# Compile properties files into enum-like classes using the propertiesparser tool
45#
46
47# To avoid reevaluating the compilation setup for the tools each time this file
48# is included, the following trick is used to be able to declare a dependency on
49# the built tools.
50BUILD_TOOLS_LANGTOOLS := $(call SetupJavaCompilationCompileTarget, \
51BUILD_TOOLS_LANGTOOLS, $(BUILDTOOLS_OUTPUTDIR)/langtools_tools_classes)
52
53TOOL_PARSEPROPERTIES_CMD := $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/langtools_tools_classes \
54propertiesparser.PropertiesParser
55
56PARSEPROPERTIES_PACKAGE := com/sun/tools/javac/resources
57PARSEPROPERTIES_FILES := compiler.properties launcher.properties
58
59PARSEPROPERTIES_SRC := $(addprefix \
60$(MODULE_SRC)/share/classes/$(PARSEPROPERTIES_PACKAGE)/, \
61$(PARSEPROPERTIES_FILES))
62
63PARSEPROPERTIES_ARGS := $(foreach file, $(PARSEPROPERTIES_SRC), \
64-compile $(file) \
65$(SUPPORT_OUTPUTDIR)/gensrc/$(MODULE)/$(PARSEPROPERTIES_PACKAGE)/)
66
67$(eval $(call SetupExecute, PARSEPROPERTIES, \
68WARN := Generating classes for $(PARSEPROPERTIES_FILES), \
69DEPS := $(PARSEPROPERTIES_SRC) $(BUILD_TOOLS_LANGTOOLS), \
70OUTPUT_DIR := $(SUPPORT_OUTPUTDIR)/gensrc/$(MODULE), \
71COMMAND := $(TOOL_PARSEPROPERTIES_CMD) $(PARSEPROPERTIES_ARGS), \
72))
73
74TARGETS += $(PARSEPROPERTIES)
75