< prev index next >

jdk/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 ifndef _TOOLS_GMK
  27 _TOOLS_GMK := 1
  28 
  29 default: all
  30 
  31 include $(SPEC)
  32 include MakeBase.gmk
  33 include JavaCompilation.gmk
  34 include NativeCompilation.gmk
  35 include SetupJavaCompilers.gmk
  36 
  37 ################################################################################
  38 
  39 $(eval $(call SetupJavaCompilation,BUILD_TOOLS_JDK, \
  40     SETUP := GENERATE_OLDBYTECODE, \
  41     ADD_JAVAC_FLAGS := -Xbootclasspath/p:$(call PathList, \
  42         $(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes \
  43         $(BUILDTOOLS_OUTPUTDIR)/interim_cldrconverter_classes), \
  44     SRC := $(JDK_TOPDIR)/make/src/classes $(BUILDTOOLS_OUTPUTDIR)/interim_cldrconverter_classes, \
  45     BIN := $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes, \
  46     COPY := boot.modules ext.modules))
  47 
  48 $(eval $(call SetupCopyFiles,COPY_NIMBUS_TEMPLATES, \
  49     SRC := $(JDK_TOPDIR)/src/java.desktop/share/classes/javax/swing/plaf/nimbus, \
  50     DEST := $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes/build/tools/generatenimbus/resources, \
  51     FILES := $(wildcard $(JDK_TOPDIR)/src/java.desktop/share/classes/javax/swing/plaf/nimbus/*.template)))
  52 
  53 BUILD_TOOLS_JDK += $(COPY_NIMBUS_TEMPLATES)
  54 
  55 ################################################################################
  56 
  57 # Add a checksum ("jsum") to the end of a text file. Prevents trivial tampering with class lists.
  58 TOOL_ADDJSUM = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  59     build.tools.addjsum.AddJsum
  60 
  61 # The buildmetaindex tool creates a meta-index to make core class loaders lazier.
  62 TOOL_BUILDMETAINDEX = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  63     build.tools.buildmetaindex.BuildMetaIndex
  64 
  65 TOOL_COMPILEFONTCONFIG = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  66     build.tools.compilefontconfig.CompileFontConfig
  67 
  68 TOOL_COMPILEPROPERTIES = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  69     build.tools.compileproperties.CompileProperties
  70 
  71 TOOL_JARREORDER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  72     build.tools.jarreorder.JarReorder
  73 


 117 
 118 TOOL_WRAPPERGENERATOR = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 119     build.tools.x11wrappergen.WrapperGenerator
 120 
 121 TOOL_AWT_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 122     build.tools.icondata.awt.ToBin
 123 
 124 TOOL_OSX_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 125     build.tools.icondata.osxapp.ToBin
 126 
 127 TOOL_CLDRCONVERTER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 128     build.tools.cldrconverter.CLDRConverter
 129 
 130 TOOL_GENMODULESXML = $(JAVA_SMALL) -Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR) \
 131     -cp $(call PathList, $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes $(JDK_OUTPUTDIR)) \
 132     build.tools.module.GenJdepsModulesXml
 133 
 134 TOOL_IMAGEBUILDER = $(JAVA_SMALL) -Xbootclasspath/p:$(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes \
 135     -cp $(call PathList, $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes $(JDK_OUTPUTDIR)) \
 136     build.tools.module.ImageBuilder
 137 
 138 ##########################################################################################
 139 
 140 JIMAGE_PKGS := \
 141     jdk/internal/jimage \
 142     jdk/internal/jrtfs \
 143     #
 144 
 145 $(eval $(call SetupJavaCompilation,BUILD_INTERIM_JIMAGE, \
 146     SETUP := GENERATE_OLDBYTECODE, \
 147     SRC := $(JDK_TOPDIR)/src/java.base/share/classes, \
 148     INCLUDES := $(JIMAGE_PKGS), \
 149     BIN := $(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes))
 150 
 151 # Because of the explicit INCLUDES in the compilation setup above, the service provider
 152 # file will not be copied unless META-INF/services would also be added to the INCLUDES.
 153 # Adding META-INF/services would include all files in that directory when only the one
 154 # is needed, which is why this explicit copy is defined instead.
 155 $(eval $(call SetupCopyFiles,COPY_JIMAGE_SERVICE_PROVIDER, \
 156     SRC := $(JDK_TOPDIR)/src/java.base/share/classes, \
 157     DEST := $(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes, \
 158     FILES := META-INF/services/java.nio.file.spi.FileSystemProvider))
 159 
 160 ##########################################################################################
 161 
 162 $(BUILD_TOOLS_JDK): $(BUILD_INTERIM_JIMAGE) $(COPY_JIMAGE_SERVICE_PROVIDER)
 163 
 164 java-tools: $(BUILD_TOOLS_JDK)
 165 
 166 all: java-tools
 167 
 168 endif # _TOOLS_GMK


   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 ifndef _TOOLS_GMK
  27 _TOOLS_GMK := 1
  28 




  29 include JavaCompilation.gmk


  30 
  31 ################################################################################
  32 # To avoid reevaluating the compilation setup for the tools each time this file
  33 # is included, the actual compilation is handled by CompileTools.gmk. The
  34 # following trick is used to be able to declare a dependency on the built tools.
  35 BUILD_TOOLS_JDK := $(call SetupJavaCompilationCompileTarget, \
  36     BUILD_TOOLS_JDK, $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes)











  37 
  38 ################################################################################
  39 
  40 # Add a checksum ("jsum") to the end of a text file. Prevents trivial tampering with class lists.
  41 TOOL_ADDJSUM = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  42     build.tools.addjsum.AddJsum
  43 
  44 # The buildmetaindex tool creates a meta-index to make core class loaders lazier.
  45 TOOL_BUILDMETAINDEX = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  46     build.tools.buildmetaindex.BuildMetaIndex
  47 
  48 TOOL_COMPILEFONTCONFIG = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  49     build.tools.compilefontconfig.CompileFontConfig
  50 
  51 TOOL_COMPILEPROPERTIES = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  52     build.tools.compileproperties.CompileProperties
  53 
  54 TOOL_JARREORDER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
  55     build.tools.jarreorder.JarReorder
  56 


 100 
 101 TOOL_WRAPPERGENERATOR = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 102     build.tools.x11wrappergen.WrapperGenerator
 103 
 104 TOOL_AWT_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 105     build.tools.icondata.awt.ToBin
 106 
 107 TOOL_OSX_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 108     build.tools.icondata.osxapp.ToBin
 109 
 110 TOOL_CLDRCONVERTER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
 111     build.tools.cldrconverter.CLDRConverter
 112 
 113 TOOL_GENMODULESXML = $(JAVA_SMALL) -Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR) \
 114     -cp $(call PathList, $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes $(JDK_OUTPUTDIR)) \
 115     build.tools.module.GenJdepsModulesXml
 116 
 117 TOOL_IMAGEBUILDER = $(JAVA_SMALL) -Xbootclasspath/p:$(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes \
 118     -cp $(call PathList, $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes $(JDK_OUTPUTDIR)) \
 119     build.tools.module.ImageBuilder






























 120 
 121 endif # _TOOLS_GMK
< prev index next >