80 -taglet build.tools.taglet.ExtLink \
81 -taglet build.tools.taglet.Incubating \
82 -tagletpath $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
83 $(CUSTOM_JAVADOC_TAGS) \
84 #
85
86 # The reference tags must stay stable to allow for comparisons across the
87 # development cycle. If JAVADOC_TAGS needs to change, make sure that
88 # REFERENCE_TAGS remains unchanged, by copying and hardcoding, if necessary.
89 REFERENCE_TAGS := $(JAVADOC_TAGS)
90
91 # Which doclint checks to ignore
92 JAVADOC_DISABLED_DOCLINT_WARNINGS := missing
93 JAVADOC_DISABLED_DOCLINT_PACKAGES := org.w3c.* javax.smartcardio
94
95 # Allow overriding on the command line
96 # (intentionally sharing name with the javac option)
97 JAVA_WARNINGS_ARE_ERRORS ?= -Werror
98
99 # The initial set of options for javadoc
100 JAVADOC_OPTIONS := -use -keywords -notimestamp \
101 -serialwarn -encoding ISO-8859-1 -docencoding UTF-8 -breakiterator \
102 -splitIndex --system none -javafx --expand-requires transitive \
103 --override-methods=summary
104
105 # The reference options must stay stable to allow for comparisons across the
106 # development cycle.
107 REFERENCE_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
108 -serialwarn -encoding ISO-8859-1 -breakiterator -splitIndex --system none \
109 -html5 -javafx --expand-requires transitive
110
111 # Should we add DRAFT stamps to the generated javadoc?
112 ifeq ($(VERSION_IS_GA), true)
113 IS_DRAFT := false
114 else
115 IS_DRAFT := true
116 endif
117
118 ################################################################################
119 # General text snippets
120
121 FULL_COMPANY_NAME := Oracle and/or its affiliates
122 COMPANY_ADDRESS := 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
80 -taglet build.tools.taglet.ExtLink \
81 -taglet build.tools.taglet.Incubating \
82 -tagletpath $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
83 $(CUSTOM_JAVADOC_TAGS) \
84 #
85
86 # The reference tags must stay stable to allow for comparisons across the
87 # development cycle. If JAVADOC_TAGS needs to change, make sure that
88 # REFERENCE_TAGS remains unchanged, by copying and hardcoding, if necessary.
89 REFERENCE_TAGS := $(JAVADOC_TAGS)
90
91 # Which doclint checks to ignore
92 JAVADOC_DISABLED_DOCLINT_WARNINGS := missing
93 JAVADOC_DISABLED_DOCLINT_PACKAGES := org.w3c.* javax.smartcardio
94
95 # Allow overriding on the command line
96 # (intentionally sharing name with the javac option)
97 JAVA_WARNINGS_ARE_ERRORS ?= -Werror
98
99 # The initial set of options for javadoc
100 JAVADOC_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
101 -serialwarn -encoding ISO-8859-1 -docencoding UTF-8 -breakiterator \
102 -splitIndex --system none -javafx --expand-requires transitive \
103 -XDenableValueTypes \
104 --enable-preview -source $(JDK_SOURCE_TARGET_VERSION) \
105 --override-methods=summary
106
107 # The reference options must stay stable to allow for comparisons across the
108 # development cycle.
109 REFERENCE_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
110 -serialwarn -encoding ISO-8859-1 -breakiterator -splitIndex --system none \
111 -html5 -javafx --expand-requires transitive
112
113 # Should we add DRAFT stamps to the generated javadoc?
114 ifeq ($(VERSION_IS_GA), true)
115 IS_DRAFT := false
116 else
117 IS_DRAFT := true
118 endif
119
120 ################################################################################
121 # General text snippets
122
123 FULL_COMPANY_NAME := Oracle and/or its affiliates
124 COMPANY_ADDRESS := 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|