< prev index next >

make/modules/jdk.compiler/Gensrc.gmk

Print this page

 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

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)
























 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

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)
< prev index next >