jdk

Форк
0
/
Gensrc.gmk 
70 строк · 3.0 Кб
1
#
2
# Copyright (c) 2011, 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

26
include GensrcCommon.gmk
27

28
################################################################################
29
# Translate the Java debugger wire protocol (jdwp.spec) file into a front-end
30
# Java implementation (JDWP.java), a back-end C header file (JDWPCommands.h) and
31
# an HTML documentation file (jdwp-protocol.html).
32

33
JDWP_SPEC_FILE := $(TOPDIR)/src/java.se/share/data/jdwp/jdwp.spec
34
HEADER_FILE := $(SUPPORT_OUTPUTDIR)/headers/jdk.jdwp.agent/JDWPCommands.h
35
JAVA_FILE := $(SUPPORT_OUTPUTDIR)/gensrc/jdk.jdi/com/sun/tools/jdi/JDWP.java
36
HTML_FILE := $(SUPPORT_OUTPUTDIR)/gensrc/jdk.jdi/jdwp-protocol.html
37

38
# Both the header and java file are created using the same recipe. By declaring
39
# this rule and adding header file to dependencies for java file, both are
40
# rebuilt if either is missing
41
$(HEADER_FILE): $(JDWP_SPEC_FILE) $(BUILD_TOOLS_JDK)
42

43
# Touch the target of this rule at the end to avoid triggering false rebuilds
44
$(JAVA_FILE): $(JDWP_SPEC_FILE) $(BUILD_TOOLS_JDK) $(HEADER_FILE)
45
	$(call LogInfo, Creating JDWP.java and JDWPCommands.h from jdwp.spec)
46
	$(call MakeDir, $(@D) $(SUPPORT_OUTPUTDIR)/headers/jdk.jdwp.agent)
47
	$(RM) $@ $(SUPPORT_OUTPUTDIR)/headers/jdk.jdwp.agent/JDWPCommands.h
48
	$(TOOL_JDWPGEN) $< -jdi $@ -include \
49
	    $(SUPPORT_OUTPUTDIR)/headers/jdk.jdwp.agent/JDWPCommands.h
50
	$(TOUCH) $@
51

52
$(HTML_FILE): $(JDWP_SPEC_FILE) \
53
    $(BUILD_TOOLS_JDK)
54
	$(call LogInfo, Creating $(@F) from jdwp.spec)
55
	$(call MakeDir, $(@D))
56
	$(RM) $@
57
	$(TOOL_JDWPGEN) $< -doc $@
58

59
TARGETS += $(JAVA_FILE) $(HEADER_FILE) $(HTML_FILE)
60

61
################################################################################
62

63
include GensrcProperties.gmk
64

65
$(eval $(call SetupCompileProperties, COMPILE_PROPERTIES, \
66
    SRC_DIRS := $(TOPDIR)/src/jdk.jdi/share/classes/com/sun/tools/jdi/resources, \
67
    CLASS := ListResourceBundle, \
68
))
69

70
TARGETS += $(COMPILE_PROPERTIES)
71

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.