< prev index next >

make/Docs.gmk

Print this page

 85     -taglet build.tools.taglet.ExtLink \
 86     -taglet build.tools.taglet.Incubating \
 87     -tagletpath $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 88     $(CUSTOM_JAVADOC_TAGS) \
 89     #
 90 
 91 # The reference tags must stay stable to allow for comparisons across the
 92 # development cycle. If JAVADOC_TAGS needs to change, make sure that
 93 # REFERENCE_TAGS remains unchanged, by copying and hardcoding, if necessary.
 94 REFERENCE_TAGS := $(JAVADOC_TAGS)
 95 
 96 # Which doclint checks to ignore
 97 JAVADOC_DISABLED_DOCLINT_WARNINGS := missing
 98 JAVADOC_DISABLED_DOCLINT_PACKAGES := org.w3c.* javax.smartcardio
 99 
100 # Allow overriding on the command line
101 # (intentionally sharing name with the javac option)
102 JAVA_WARNINGS_ARE_ERRORS ?= -Werror
103 
104 # The initial set of options for javadoc
105 JAVADOC_OPTIONS := -use -keywords -notimestamp \
106     -encoding ISO-8859-1 -docencoding UTF-8 -breakiterator \
107     -splitIndex --system none -javafx --expand-requires transitive \


108     --override-methods=summary \
109     --no-external-specs-page
110 
111 # The reference options must stay stable to allow for comparisons across the
112 # development cycle.
113 REFERENCE_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
114     -encoding ISO-8859-1 -breakiterator -splitIndex --system none \
115     -html5 -javafx --expand-requires transitive \
116     --no-external-specs-page
117 
118 # Should we add DRAFT stamps to the generated javadoc?
119 ifeq ($(VERSION_IS_GA), true)
120   IS_DRAFT := false
121 else
122   IS_DRAFT := true
123 endif
124 
125 ################################################################################
126 # General text snippets
127 

 85     -taglet build.tools.taglet.ExtLink \
 86     -taglet build.tools.taglet.Incubating \
 87     -tagletpath $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 88     $(CUSTOM_JAVADOC_TAGS) \
 89     #
 90 
 91 # The reference tags must stay stable to allow for comparisons across the
 92 # development cycle. If JAVADOC_TAGS needs to change, make sure that
 93 # REFERENCE_TAGS remains unchanged, by copying and hardcoding, if necessary.
 94 REFERENCE_TAGS := $(JAVADOC_TAGS)
 95 
 96 # Which doclint checks to ignore
 97 JAVADOC_DISABLED_DOCLINT_WARNINGS := missing
 98 JAVADOC_DISABLED_DOCLINT_PACKAGES := org.w3c.* javax.smartcardio
 99 
100 # Allow overriding on the command line
101 # (intentionally sharing name with the javac option)
102 JAVA_WARNINGS_ARE_ERRORS ?= -Werror
103 
104 # The initial set of options for javadoc
105 JAVADOC_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
106     -encoding ISO-8859-1 -docencoding UTF-8 -breakiterator \
107     -splitIndex --system none -javafx --expand-requires transitive \
108     -XDenableValueTypes \
109     --enable-preview -source $(JDK_SOURCE_TARGET_VERSION) \
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 
< prev index next >