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