< prev index next >

make/CompileJavaModules.gmk

Print this page




 351 
 352 java.xml.crypto_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*'
 353 java.xml.crypto_COPY := .dtd .xml
 354 java.xml.crypto_CLEAN := .properties
 355 
 356 ################################################################################
 357 
 358 jdk.charsets_COPY := .dat
 359 
 360 ################################################################################
 361 
 362 jdk.compiler_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:-com.sun.tools.*' -XDstringConcat=inline
 363 jdk.compiler_COPY := javax.tools.JavaCompilerTool
 364 jdk.compiler_CLEAN_FILES := $(wildcard \
 365     $(patsubst %, $(JDK_TOPDIR)/src/jdk.compiler/share/classes/%/*.properties, \
 366         sun/tools/serialver/resources))
 367 
 368 ################################################################################
 369 
 370 jdk.hotspot.agent_ADD_JAVAC_FLAGS := $(DISABLE_WARNINGS),-overrides
 371 jdk.hotspot.agent_COPY := .png sa.js .properties
 372 
 373 ifeq ($(MODULE), jdk.hotspot.agent)
 374   ### Copy gif files
 375   # Special handling to copy gif files in images/toolbarButtonGraphics \
 376   #   -> classes/toolbarButtonGraphics.
 377   # These can't be handled by COPY to SetupJavaCompilation since they chop off
 378   # one directory level.
 379   $(eval $(call SetupCopyFiles, COPY_SA_IMAGES, \
 380       SRC := $(HOTSPOT_TOPDIR)/src/jdk.hotspot.agent/share/classes/images, \
 381       DEST := $(JDK_OUTPUTDIR)/modules/$(MODULE), \
 382       FILES := $(wildcard $(HOTSPOT_TOPDIR)/src/jdk.hotspot.agent/share/classes/images/*/*/*.gif), \
 383   ))
 384   jdk.hotspot.agent: $(COPY_SA_IMAGES)

 385 endif
 386 
 387 ################################################################################
 388 
 389 jdk.internal.le_COPY := .properties
 390 
 391 ################################################################################
 392 
 393 jdk.jcmd_COPY := _options
 394 
 395 ################################################################################
 396 
 397 jdk.dynalink_CLEAN := .properties
 398 
 399 ################################################################################
 400 
 401 jdk.javadoc_COPY := .xml .css .js .png
 402 
 403 ################################################################################
 404 




 351 
 352 java.xml.crypto_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:java.*,javax.*'
 353 java.xml.crypto_COPY := .dtd .xml
 354 java.xml.crypto_CLEAN := .properties
 355 
 356 ################################################################################
 357 
 358 jdk.charsets_COPY := .dat
 359 
 360 ################################################################################
 361 
 362 jdk.compiler_ADD_JAVAC_FLAGS := -Xdoclint:all/protected '-Xdoclint/package:-com.sun.tools.*' -XDstringConcat=inline
 363 jdk.compiler_COPY := javax.tools.JavaCompilerTool
 364 jdk.compiler_CLEAN_FILES := $(wildcard \
 365     $(patsubst %, $(JDK_TOPDIR)/src/jdk.compiler/share/classes/%/*.properties, \
 366         sun/tools/serialver/resources))
 367 
 368 ################################################################################
 369 
 370 jdk.hotspot.agent_ADD_JAVAC_FLAGS := $(DISABLE_WARNINGS),-overrides
 371 jdk.hotspot.agent_COPY := .gif .png sa.js .properties
 372 
 373 ifeq ($(MODULE), jdk.hotspot.agent)
 374   ### Copy gif files
 375   # Special handling to copy gif files in images/toolbarButtonGraphics \
 376   #   -> classes/toolbarButtonGraphics.
 377   # These can't be handled by COPY to SetupJavaCompilation since they chop off
 378   # one directory level.
 379   $(eval $(call SetupCopyFiles, COPY_SA_IMAGES, \
 380       SRC := $(HOTSPOT_TOPDIR)/src/jdk.hotspot.agent/share/classes/images, \
 381       DEST := $(JDK_OUTPUTDIR)/modules/$(MODULE), \
 382       FILES := $(wildcard $(HOTSPOT_TOPDIR)/src/jdk.hotspot.agent/share/classes/images/*/*/*.gif), \
 383   ))
 384   jdk.hotspot.agent_COPY_EXTRA += $(COPY_SA_IMAGES)
 385   jdk.hotspot.agent_EXCLUDES += images
 386 endif
 387 
 388 ################################################################################
 389 
 390 jdk.internal.le_COPY := .properties
 391 
 392 ################################################################################
 393 
 394 jdk.jcmd_COPY := _options
 395 
 396 ################################################################################
 397 
 398 jdk.dynalink_CLEAN := .properties
 399 
 400 ################################################################################
 401 
 402 jdk.javadoc_COPY := .xml .css .js .png
 403 
 404 ################################################################################
 405 


< prev index next >