< prev index next >

make/Docs.gmk

Print this page

 76     -tag serialData \
 77     -tag factory \
 78     -tag spec \
 79     -tag see \
 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 # The initial set of options for javadoc
 96 JAVADOC_OPTIONS := -use -keywords -notimestamp \
 97     -serialwarn -encoding utf-8 -docencoding utf-8 -breakiterator \
 98     -splitIndex --system none -javafx --expand-requires transitive \

 99     --override-methods=summary
100 
101 # The reference options must stay stable to allow for comparisons across the
102 # development cycle.
103 REFERENCE_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
104     -serialwarn -encoding utf-8 -breakiterator -splitIndex --system none \
105     -html5 -javafx --expand-requires transitive
106 
107 # Should we add DRAFT stamps to the generated javadoc?
108 ifeq ($(VERSION_IS_GA), true)
109   IS_DRAFT := false
110 else
111   IS_DRAFT := true
112 endif
113 
114 ################################################################################
115 # General text snippets
116 
117 FULL_COMPANY_NAME := Oracle and/or its affiliates
118 COMPANY_ADDRESS := 500 Oracle Parkway, Redwood Shores, CA 94065 USA

 76     -tag serialData \
 77     -tag factory \
 78     -tag spec \
 79     -tag see \
 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 # The initial set of options for javadoc
 96 JAVADOC_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
 97     -serialwarn -encoding utf-8 -docencoding utf-8 -breakiterator \
 98     -splitIndex --system none -javafx --expand-requires transitive \
 99     --enable-preview -source $(JDK_SOURCE_TARGET_VERSION) \
100     --override-methods=summary
101 
102 # The reference options must stay stable to allow for comparisons across the
103 # development cycle.
104 REFERENCE_OPTIONS := -XDignore.symbol.file=true -use -keywords -notimestamp \
105     -serialwarn -encoding utf-8 -breakiterator -splitIndex --system none \
106     -html5 -javafx --expand-requires transitive
107 
108 # Should we add DRAFT stamps to the generated javadoc?
109 ifeq ($(VERSION_IS_GA), true)
110   IS_DRAFT := false
111 else
112   IS_DRAFT := true
113 endif
114 
115 ################################################################################
116 # General text snippets
117 
118 FULL_COMPANY_NAME := Oracle and/or its affiliates
119 COMPANY_ADDRESS := 500 Oracle Parkway, Redwood Shores, CA 94065 USA
< prev index next >