1 #
 2 # Copyright (c) 2014, 2024, 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 
26 include GensrcCommon.gmk
27 include GensrcProperties.gmk
28 include Execute.gmk
29 
30 $(eval $(call SetupVersionProperties, JAVAC_VERSION, \
31     com/sun/tools/javac/resources/version.properties))
32 
33 $(eval $(call SetupCompileProperties, COMPILE_PROPERTIES, \
34     SRC_DIRS := $(TOPDIR)/src/$(MODULE)/share/classes, \
35     EXTRA_FILES := $(JAVAC_VERSION), \
36     CLASS := java.util.ListResourceBundle, \
37     TYPE := langtools, \
38 ))
39 
40 TARGETS += $(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.
50 BUILD_TOOLS_LANGTOOLS := $(call SetupJavaCompilationCompileTarget, \
51     BUILD_TOOLS_LANGTOOLS, $(BUILDTOOLS_OUTPUTDIR)/langtools_tools_classes)
52 
53 TOOL_PARSEPROPERTIES_CMD := $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/langtools_tools_classes \
54     propertiesparser.PropertiesParser
55 
56 PARSEPROPERTIES_PACKAGE := com/sun/tools/javac/resources
57 PARSEPROPERTIES_FILES := compiler.properties launcher.properties
58 
59 PARSEPROPERTIES_SRC := $(addprefix \
60     $(MODULE_SRC)/share/classes/$(PARSEPROPERTIES_PACKAGE)/, \
61     $(PARSEPROPERTIES_FILES))
62 
63 PARSEPROPERTIES_ARGS := $(foreach file, $(PARSEPROPERTIES_SRC), \
64     -compile $(file) \
65     $(SUPPORT_OUTPUTDIR)/gensrc/$(MODULE)/$(PARSEPROPERTIES_PACKAGE)/)
66 
67 $(eval $(call SetupExecute, PARSEPROPERTIES, \
68     WARN := Generating classes for $(PARSEPROPERTIES_FILES), \
69     DEPS := $(PARSEPROPERTIES_SRC) $(BUILD_TOOLS_LANGTOOLS), \
70     OUTPUT_DIR := $(SUPPORT_OUTPUTDIR)/gensrc/$(MODULE), \
71     COMMAND := $(TOOL_PARSEPROPERTIES_CMD) $(PARSEPROPERTIES_ARGS), \
72 ))
73 
74 TARGETS += $(PARSEPROPERTIES)
75 
76 ################################################################################
77 #
78 # Copy stubs of code reflection API in langtools
79 
80 GENSTUBS_DEST_ROOT := $(SUPPORT_OUTPUTDIR)/gensrc/$(MODULE)
81 
82 GENSTUBS_SRC := $(TOPDIR)/src/java.base/share/classes/java/lang/reflect/code
83 
84 GENSTUBS_DEST := $(GENSTUBS_DEST_ROOT)/jdk/internal/java/lang/reflect/code
85 
86 GENSTUBS_SCRIPT := $(TOPDIR)/cr-util/copy-to-compiler.sh
87 
88 GENSTUBS_CMD := $(BASH) $(GENSTUBS_SCRIPT) $(TOPDIR)/src/java.base/share/classes $(GENSTUBS_DEST_ROOT)
89 
90 $(eval $(call SetupExecute, GENSTUBS, \
91     WARN := Generating compiler stubs for code reflection, \
92     DEPS := $(call FindFiles, $(GENSTUBS_SRC), *.java), \
93     OUTPUT_DIR := $(GENSTUBS_DEST), \
94     COMMAND := $(GENSTUBS_CMD), \
95 ))
96 
97 TARGETS += $(GENSTUBS)