< prev index next >

make/Docs.gmk

Print this page




 183 JDK_SHORT_NAME := Java SE $(VERSION_SPECIFICATION) &amp; JDK $(VERSION_SPECIFICATION)
 184 JDK_LONG_NAME := Java<sup>&reg;</sup> Platform, Standard Edition \
 185     &amp;&nbsp;Java&nbsp;Development&nbsp;Kit
 186 
 187 ################################################################################
 188 # Java SE javadoc titles/text snippets
 189 
 190 JAVASE_SHORT_NAME := Java SE $(VERSION_SPECIFICATION)
 191 JAVASE_LONG_NAME := Java<sup>&reg;</sup> Platform, Standard Edition
 192 
 193 ################################################################################
 194 # Functions
 195 
 196 # Helper function for creating a png file from a dot file generated by the
 197 # GenGraphs tool.
 198 # param 1: SetupJavadocGeneration namespace ($1)
 199 # param 2: module name
 200 #
 201 define setup_gengraph_dot_to_png
 202   $1_$2_DOT_SRC :=  $$($1_GENGRAPHS_DIR)/$2.dot
 203   $1_$2_PNG_TARGET := $$($1_TARGET_DIR)/$2-graph.png
 204 
 205     # For each module needing a graph, create a png file from the dot file
 206     # generated by the GenGraphs tool and store it in the target dir.
 207     $$($1_$2_PNG_TARGET): $$($1_GENGRAPHS_MARKER)
 208         $$(call MakeDir, $$(@D))
 209         $$(call ExecuteWithLog, $$($1_$2_DOT_SRC), \
 210             $$(DOT) -Tpng -o $$($1_$2_PNG_TARGET) $$($1_$2_DOT_SRC))
 211 
 212   $1_MODULEGRAPH_TARGETS += $$($1_$2_PNG_TARGET)
 213 endef
 214 
 215 # Helper function to create the overview.html file to use with the -overview
 216 # javadoc option.
 217 # Returns the filename as $1_OVERVIEW.
 218 #
 219 # param 1: SetupJavadocGeneration namespace ($1)
 220 define create_overview_file
 221   $1_OVERVIEW_TEXT := \
 222       <!DOCTYPE html> \
 223       <html><head></head><body> \




 183 JDK_SHORT_NAME := Java SE $(VERSION_SPECIFICATION) &amp; JDK $(VERSION_SPECIFICATION)
 184 JDK_LONG_NAME := Java<sup>&reg;</sup> Platform, Standard Edition \
 185     &amp;&nbsp;Java&nbsp;Development&nbsp;Kit
 186 
 187 ################################################################################
 188 # Java SE javadoc titles/text snippets
 189 
 190 JAVASE_SHORT_NAME := Java SE $(VERSION_SPECIFICATION)
 191 JAVASE_LONG_NAME := Java<sup>&reg;</sup> Platform, Standard Edition
 192 
 193 ################################################################################
 194 # Functions
 195 
 196 # Helper function for creating a png file from a dot file generated by the
 197 # GenGraphs tool.
 198 # param 1: SetupJavadocGeneration namespace ($1)
 199 # param 2: module name
 200 #
 201 define setup_gengraph_dot_to_png
 202   $1_$2_DOT_SRC :=  $$($1_GENGRAPHS_DIR)/$2.dot
 203   $1_$2_PNG_TARGET := $$($1_TARGET_DIR)/$2/module-graph.png
 204 
 205     # For each module needing a graph, create a png file from the dot file
 206     # generated by the GenGraphs tool and store it in the target dir.
 207     $$($1_$2_PNG_TARGET): $$($1_GENGRAPHS_MARKER)
 208         $$(call MakeDir, $$(@D))
 209         $$(call ExecuteWithLog, $$($1_$2_DOT_SRC), \
 210             $$(DOT) -Tpng -o $$($1_$2_PNG_TARGET) $$($1_$2_DOT_SRC))
 211 
 212   $1_MODULEGRAPH_TARGETS += $$($1_$2_PNG_TARGET)
 213 endef
 214 
 215 # Helper function to create the overview.html file to use with the -overview
 216 # javadoc option.
 217 # Returns the filename as $1_OVERVIEW.
 218 #
 219 # param 1: SetupJavadocGeneration namespace ($1)
 220 define create_overview_file
 221   $1_OVERVIEW_TEXT := \
 222       <!DOCTYPE html> \
 223       <html><head></head><body> \


< prev index next >