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