make/Tools.gmk

Print this page




   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # Cache all finds needed for this file. Only used on windows.
  27 $(eval $(call FillCacheFind, $(JDK_TOPDIR)/make/src/classes))
  28 
  29 TOOLS_SRC := $(JDK_TOPDIR)/make/src/classes
  30 
  31 ifeq ($(findstring $(OPENJDK_TARGET_OS),windows macosx),)
  32   TOOLS_SRC += $(JDK_TOPDIR)/src/solaris/classes/sun/awt/X11/generator
  33 endif
  34 
  35 # The exception handling of swing beaninfo which have the own tool directory
  36 ifeq (, $(BUILD_TOOLS))
  37   $(eval $(call SetupJavaCompilation,BUILD_TOOLS, \
  38       SETUP := GENERATE_OLDBYTECODE, \
  39       SRC := $(TOOLS_SRC), \
  40       BIN := $(JDK_OUTPUTDIR)/btclasses))
  41 endif
  42 
  43 $(JDK_OUTPUTDIR)/btclasses/build/tools/generatenimbus/resources/%.template: \
  44     $(JDK_TOPDIR)/src/share/classes/javax/swing/plaf/nimbus/%.template
  45         $(call install-file)
  46 
  47 BUILD_TOOLS += $(foreach i, $(wildcard $(JDK_TOPDIR)/src/share/classes/javax/swing/plaf/nimbus/*.template), $(JDK_OUTPUTDIR)/btclasses/build/tools/generatenimbus/resources/$(notdir $i))
  48 
  49 # Resource used by CheckDeps tool
  50 $(JDK_OUTPUTDIR)/btclasses/build/tools/deps/refs.allowed: \
  51     $(JDK_TOPDIR)/make/data/checkdeps/refs.allowed
  52         $(call install-file)
  53 
  54 BUILD_TOOLS += $(JDK_OUTPUTDIR)/btclasses/build/tools/deps/refs.allowed
  55 
  56 # Add a checksum ("jsum") to the end of a text file. Prevents trivial tampering with class lists.
  57 TOOL_ADDJSUM = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
  58     build.tools.addjsum.AddJsum
  59 


  94 
  95 TOOL_TZDB = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
  96     build.tools.tzdb.TzdbZoneRulesCompiler
  97 
  98 
  99 # TODO: There are references to the jdwpgen.jar in jdk/make/netbeans/jdwpgen/build.xml
 100 # and nbproject/project.properties in the same dir. Needs to be looked at.
 101 TOOL_JDWPGEN = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses build.tools.jdwpgen.Main
 102 
 103 # TODO: Lots of files in jdk/make/tools/CharsetMapping dir
 104 TOOL_CHARSETMAPPING = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
 105     build.tools.charsetmapping.Main $(LOG_INFO)
 106 
 107 TOOL_SPP = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses build.tools.spp.Spp
 108 
 109 # Nimbus is used somewhere in the swing build.
 110 TOOL_GENERATENIMBUS = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
 111     build.tools.generatenimbus.Generator
 112 
 113 TOOL_WRAPPERGENERATOR = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
 114     WrapperGenerator
 115 
 116 TOOL_AWT_TOBIN = $(JAVA) -Djava.awt.headless=true -cp $(JDK_OUTPUTDIR)/btclasses \
 117     build.tools.icondata.awt.ToBin
 118 
 119 TOOL_OSX_TOBIN = $(JAVA) -Djava.awt.headless=true -cp $(JDK_OUTPUTDIR)/btclasses \
 120     build.tools.icondata.osxapp.ToBin
 121 
 122 TOOL_CLDRCONVERTER = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
 123     build.tools.cldrconverter.CLDRConverter
 124 
 125 TOOL_CHECKDEPS = $(JAVA) -Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR) \
 126     -cp $(JDK_OUTPUTDIR)/btclasses:$(JDK_OUTPUTDIR) \
 127     build.tools.deps.CheckDeps
 128 
 129 TOOL_ADDTORESTRICTEDPKGS=$(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
 130     build.tools.addtorestrictedpkgs.AddToRestrictedPkgs
 131 
 132 ##########################################################################################
 133 
 134 # Tools needed on solaris because OBJCOPY is broken.




   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # Cache all finds needed for this file. Only used on windows.
  27 $(eval $(call FillCacheFind, $(JDK_TOPDIR)/make/src/classes))
  28 






  29 # The exception handling of swing beaninfo which have the own tool directory
  30 ifeq (, $(BUILD_TOOLS))
  31   $(eval $(call SetupJavaCompilation,BUILD_TOOLS, \
  32       SETUP := GENERATE_OLDBYTECODE, \
  33       SRC := $(JDK_TOPDIR)/make/src/classes, \
  34       BIN := $(JDK_OUTPUTDIR)/btclasses))
  35 endif
  36 
  37 $(JDK_OUTPUTDIR)/btclasses/build/tools/generatenimbus/resources/%.template: \
  38     $(JDK_TOPDIR)/src/share/classes/javax/swing/plaf/nimbus/%.template
  39         $(call install-file)
  40 
  41 BUILD_TOOLS += $(foreach i, $(wildcard $(JDK_TOPDIR)/src/share/classes/javax/swing/plaf/nimbus/*.template), $(JDK_OUTPUTDIR)/btclasses/build/tools/generatenimbus/resources/$(notdir $i))
  42 
  43 # Resource used by CheckDeps tool
  44 $(JDK_OUTPUTDIR)/btclasses/build/tools/deps/refs.allowed: \
  45     $(JDK_TOPDIR)/make/data/checkdeps/refs.allowed
  46         $(call install-file)
  47 
  48 BUILD_TOOLS += $(JDK_OUTPUTDIR)/btclasses/build/tools/deps/refs.allowed
  49 
  50 # Add a checksum ("jsum") to the end of a text file. Prevents trivial tampering with class lists.
  51 TOOL_ADDJSUM = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
  52     build.tools.addjsum.AddJsum
  53 


  88 
  89 TOOL_TZDB = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
  90     build.tools.tzdb.TzdbZoneRulesCompiler
  91 
  92 
  93 # TODO: There are references to the jdwpgen.jar in jdk/make/netbeans/jdwpgen/build.xml
  94 # and nbproject/project.properties in the same dir. Needs to be looked at.
  95 TOOL_JDWPGEN = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses build.tools.jdwpgen.Main
  96 
  97 # TODO: Lots of files in jdk/make/tools/CharsetMapping dir
  98 TOOL_CHARSETMAPPING = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
  99     build.tools.charsetmapping.Main $(LOG_INFO)
 100 
 101 TOOL_SPP = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses build.tools.spp.Spp
 102 
 103 # Nimbus is used somewhere in the swing build.
 104 TOOL_GENERATENIMBUS = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
 105     build.tools.generatenimbus.Generator
 106 
 107 TOOL_WRAPPERGENERATOR = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
 108     build.tools.x11wrappergenerator.WrapperGenerator
 109 
 110 TOOL_AWT_TOBIN = $(JAVA) -Djava.awt.headless=true -cp $(JDK_OUTPUTDIR)/btclasses \
 111     build.tools.icondata.awt.ToBin
 112 
 113 TOOL_OSX_TOBIN = $(JAVA) -Djava.awt.headless=true -cp $(JDK_OUTPUTDIR)/btclasses \
 114     build.tools.icondata.osxapp.ToBin
 115 
 116 TOOL_CLDRCONVERTER = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
 117     build.tools.cldrconverter.CLDRConverter
 118 
 119 TOOL_CHECKDEPS = $(JAVA) -Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR) \
 120     -cp $(JDK_OUTPUTDIR)/btclasses:$(JDK_OUTPUTDIR) \
 121     build.tools.deps.CheckDeps
 122 
 123 TOOL_ADDTORESTRICTEDPKGS=$(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
 124     build.tools.addtorestrictedpkgs.AddToRestrictedPkgs
 125 
 126 ##########################################################################################
 127 
 128 # Tools needed on solaris because OBJCOPY is broken.