make/Defs-internal.gmk
changeset 4309 39ca605f0647
parent 3789 2040d99c6f14
child 4557 06b5b429d9f5
equal deleted inserted replaced
4085:517d870f8e23 4309:39ca605f0647
   223 ifndef SKIP_DEBUG_BUILD
   223 ifndef SKIP_DEBUG_BUILD
   224   SKIP_DEBUG_BUILD=true
   224   SKIP_DEBUG_BUILD=true
   225 endif
   225 endif
   226 ifndef SKIP_FASTDEBUG_BUILD
   226 ifndef SKIP_FASTDEBUG_BUILD
   227   SKIP_FASTDEBUG_BUILD=false
   227   SKIP_FASTDEBUG_BUILD=false
       
   228 endif
       
   229 
       
   230 # Select javadoc setting GENERATE_DOCS
       
   231 ifndef NO_DOCS
       
   232   # Default value (we want javadoc run)
       
   233   GENERATE_DOCS=true
       
   234   # No DOCS build when JDK_UPDATE_VERSION set
       
   235   ifdef JDK_UPDATE_VERSION
       
   236     GENERATE_DOCS=false
       
   237   endif
       
   238   # If langtools, corba, jaxp, and jaxws are not being built, 
       
   239   #   a full jdk javadoc is not possible
       
   240   ifneq ($(BUILD_LANGTOOLS), true)
       
   241     GENERATE_DOCS=false
       
   242   endif
       
   243   ifneq ($(BUILD_CORBA), true)
       
   244     GENERATE_DOCS=false
       
   245   endif
       
   246   ifneq ($(BUILD_JAXP), true)
       
   247     GENERATE_DOCS=false
       
   248   endif
       
   249   ifneq ($(BUILD_JAXWS), true)
       
   250     GENERATE_DOCS=false
       
   251   endif
       
   252   ifeq ($(GENERATE_DOCS),false)
       
   253     NO_DOCS=true
       
   254   endif
       
   255 else
       
   256   GENERATE_DOCS=false
   228 endif
   257 endif
   229 
   258 
   230 # Output directory for hotspot build
   259 # Output directory for hotspot build
   231 HOTSPOT_DIR = $(ABS_OUTPUTDIR)/hotspot
   260 HOTSPOT_DIR = $(ABS_OUTPUTDIR)/hotspot
   232 
   261