author | miauno |
Fri, 30 Jan 2015 20:00:57 +0100 | |
changeset 28821 | f7820f311663 |
parent 27565 | 729f9700483a |
child 28658 | 344426303820 |
permissions | -rw-r--r-- |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
23350 | 2 |
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
25859 | 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 |
|
26191
a0ff4b39d34b
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25991
diff
changeset
|
35 |
include SetupJavaCompilers.gmk |
25859 | 36 |
|
12892 | 37 |
# The exception handling of swing beaninfo which have the own tool directory |
25859 | 38 |
ifeq (, $(BUILD_TOOLS_JDK)) |
39 |
$(eval $(call SetupJavaCompilation,BUILD_TOOLS_JDK, \ |
|
20547 | 40 |
SETUP := GENERATE_OLDBYTECODE, \ |
27565 | 41 |
ADD_JAVAC_FLAGS := "-Xbootclasspath/p:$(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes", \ |
22967
bfcfd51c9e5c
8034193: Move X11 wrapper generator files to make/src and make/data
erikj
parents:
22650
diff
changeset
|
42 |
SRC := $(JDK_TOPDIR)/make/src/classes, \ |
27565 | 43 |
BIN := $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes, \ |
44 |
COPY := boot.modules ext.modules)) |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
45 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
46 |
|
27565 | 47 |
$(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes/build/tools/generatenimbus/resources/%.template: \ |
25859 | 48 |
$(JDK_TOPDIR)/src/java.desktop/share/classes/javax/swing/plaf/nimbus/%.template |
16636
1cc691bcfe50
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
15693
diff
changeset
|
49 |
$(call install-file) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
50 |
|
27565 | 51 |
BUILD_TOOLS_JDK += $(foreach i, $(wildcard $(JDK_TOPDIR)/src/java.desktop/share/classes/javax/swing/plaf/nimbus/*.template), $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes/build/tools/generatenimbus/resources/$(notdir $i)) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
52 |
|
21805 | 53 |
# Resource used by CheckDeps tool |
27565 | 54 |
$(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes/build/tools/deps/refs.allowed: \ |
21805 | 55 |
$(JDK_TOPDIR)/make/data/checkdeps/refs.allowed |
16636
1cc691bcfe50
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
15693
diff
changeset
|
56 |
$(call install-file) |
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15689
diff
changeset
|
57 |
|
27565 | 58 |
BUILD_TOOLS_JDK += $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes/build/tools/deps/refs.allowed |
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15689
diff
changeset
|
59 |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
60 |
# Add a checksum ("jsum") to the end of a text file. Prevents trivial tampering with class lists. |
27565 | 61 |
TOOL_ADDJSUM = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 62 |
build.tools.addjsum.AddJsum |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
63 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
64 |
# The buildmetaindex tool creates a meta-index to make core class loaders lazier. |
27565 | 65 |
TOOL_BUILDMETAINDEX = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 66 |
build.tools.buildmetaindex.BuildMetaIndex |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
67 |
|
27565 | 68 |
TOOL_COMPILEFONTCONFIG = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 69 |
build.tools.compilefontconfig.CompileFontConfig |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
70 |
|
27565 | 71 |
TOOL_COMPILEPROPERTIES = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 72 |
build.tools.compileproperties.CompileProperties |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
73 |
|
27565 | 74 |
TOOL_JARREORDER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 75 |
build.tools.jarreorder.JarReorder |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
76 |
|
27565 | 77 |
TOOL_GENERATECHARACTER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 78 |
build.tools.generatecharacter.GenerateCharacter |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
79 |
|
27565 | 80 |
TOOL_CHARACTERNAME = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 81 |
build.tools.generatecharacter.CharacterName |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
82 |
|
23350 | 83 |
TOOL_DTDBUILDER = $(JAVA_SMALL) -Ddtd_home=$(JDK_TOPDIR)/make/data/dtdbuilder \ |
23568 | 84 |
-Djava.awt.headless=true \ |
27565 | 85 |
-cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes build.tools.dtdbuilder.DTDBuilder |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
86 |
|
23350 | 87 |
TOOL_GENERATEBREAKITERATORDATA = $(JAVA_SMALL) \ |
27565 | 88 |
-cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 89 |
build.tools.generatebreakiteratordata.GenerateBreakIteratorData |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
90 |
|
27565 | 91 |
TOOL_GENERATECURRENCYDATA = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 92 |
build.tools.generatecurrencydata.GenerateCurrencyData |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
93 |
|
27565 | 94 |
TOOL_HASHER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 95 |
build.tools.hasher.Hasher |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
96 |
|
27565 | 97 |
TOOL_TZDB = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 98 |
build.tools.tzdb.TzdbZoneRulesCompiler |
15289 | 99 |
|
27565 | 100 |
TOOL_BLACKLISTED_CERTS = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
25397 | 101 |
build.tools.blacklistedcertsconverter.BlacklistedCertsConverter |
102 |
||
27565 | 103 |
TOOL_MAKEJAVASECURITY = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
25974
850dc36ea410
6997010: Consolidate java.security files into one file with modifications
weijun
parents:
25397
diff
changeset
|
104 |
build.tools.makejavasecurity.MakeJavaSecurity |
850dc36ea410
6997010: Consolidate java.security files into one file with modifications
weijun
parents:
25397
diff
changeset
|
105 |
|
15289 | 106 |
|
20547 | 107 |
# TODO: There are references to the jdwpgen.jar in jdk/make/netbeans/jdwpgen/build.xml |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
108 |
# and nbproject/project.properties in the same dir. Needs to be looked at. |
27565 | 109 |
TOOL_JDWPGEN = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes build.tools.jdwpgen.Main |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
110 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
111 |
# TODO: Lots of files in jdk/make/tools/CharsetMapping dir |
27565 | 112 |
TOOL_CHARSETMAPPING = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
22046
diff
changeset
|
113 |
build.tools.charsetmapping.Main $(LOG_INFO) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
114 |
|
27565 | 115 |
TOOL_SPP = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes build.tools.spp.Spp |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
116 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
117 |
# Nimbus is used somewhere in the swing build. |
27565 | 118 |
TOOL_GENERATENIMBUS = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 119 |
build.tools.generatenimbus.Generator |
12892 | 120 |
|
27565 | 121 |
TOOL_WRAPPERGENERATOR = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
22967
bfcfd51c9e5c
8034193: Move X11 wrapper generator files to make/src and make/data
erikj
parents:
22650
diff
changeset
|
122 |
build.tools.x11wrappergen.WrapperGenerator |
12892 | 123 |
|
27565 | 124 |
TOOL_AWT_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
21805 | 125 |
build.tools.icondata.awt.ToBin |
13164 | 126 |
|
27565 | 127 |
TOOL_OSX_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
21805 | 128 |
build.tools.icondata.osxapp.ToBin |
14231 | 129 |
|
27565 | 130 |
TOOL_CLDRCONVERTER = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \ |
20547 | 131 |
build.tools.cldrconverter.CLDRConverter |
13583 | 132 |
|
23350 | 133 |
TOOL_CHECKDEPS = $(JAVA_SMALL) -Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR) \ |
27565 | 134 |
-cp "$(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes$(PATH_SEP)$(JDK_OUTPUTDIR)" \ |
20547 | 135 |
build.tools.deps.CheckDeps |
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15689
diff
changeset
|
136 |
|
25859 | 137 |
TOOL_GENMODULESXML = $(JAVA_SMALL) -Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR) \ |
27565 | 138 |
-cp "$(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes$(PATH_SEP)$(JDK_OUTPUTDIR)" \ |
26227
aa7ada31eb77
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26192
diff
changeset
|
139 |
build.tools.module.GenJdepsModulesXml |
25859 | 140 |
|
27565 | 141 |
TOOL_IMAGEBUILDER = $(JAVA_SMALL) -Xbootclasspath/p:$(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes \ |
142 |
-cp "$(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes$(PATH_SEP)$(JDK_OUTPUTDIR)" \ |
|
143 |
build.tools.module.ImageBuilder |
|
144 |
||
145 |
########################################################################################## |
|
146 |
||
147 |
JIMAGE_PKGS := \ |
|
148 |
jdk/internal/jimage \ |
|
149 |
jdk/internal/jrtfs \ |
|
150 |
# |
|
151 |
||
152 |
$(eval $(call SetupJavaCompilation,BUILD_INTERIM_JIMAGE, \ |
|
153 |
SETUP := GENERATE_OLDBYTECODE, \ |
|
154 |
SRC := $(JDK_TOPDIR)/src/java.base/share/classes, \ |
|
155 |
INCLUDES := $(JIMAGE_PKGS), \ |
|
156 |
EXCLUDES := jdk/internal/jimage/concurrent, \ |
|
157 |
BIN := $(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes)) |
|
158 |
||
13164 | 159 |
########################################################################################## |
160 |
||
161 |
# Tools needed on solaris because OBJCOPY is broken. |
|
162 |
||
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
20323
diff
changeset
|
163 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
20547 | 164 |
$(eval $(call SetupNativeCompilation,ADD_GNU_DEBUGLINK, \ |
21805 | 165 |
SRC := $(JDK_TOPDIR)/make/src/native/add_gnu_debuglink, \ |
20547 | 166 |
LANG := C, \ |
167 |
CC := $(BUILD_CC), \ |
|
168 |
LDEXE := $(BUILD_LD), \ |
|
169 |
LDFLAGS := -lelf, \ |
|
27565 | 170 |
OBJECT_DIR := $(BUILDTOOLS_OUTPUTDIR)/objs/add_gnu_debuglink, \ |
171 |
OUTPUT_DIR := $(BUILDTOOLS_OUTPUTDIR)/bin, \ |
|
20547 | 172 |
PROGRAM := add_gnu_debuglink)) |
13164 | 173 |
|
20547 | 174 |
$(eval $(call SetupNativeCompilation,FIX_EMPTY_SEC_HDR_FLAGS, \ |
21805 | 175 |
SRC := $(JDK_TOPDIR)/make/src/native/fix_empty_sec_hdr_flags, \ |
20547 | 176 |
LANG := C, \ |
177 |
CC := $(BUILD_CC), \ |
|
178 |
LDEXE := $(BUILD_LD), \ |
|
179 |
LDFLAGS := -lelf, \ |
|
27565 | 180 |
OBJECT_DIR := $(BUILDTOOLS_OUTPUTDIR)/objs/fix_empty_sec_hdr_flags, \ |
181 |
OUTPUT_DIR := $(BUILDTOOLS_OUTPUTDIR)/bin, \ |
|
20547 | 182 |
PROGRAM := fix_empty_sec_hdr_flags)) |
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
20323
diff
changeset
|
183 |
endif |
25859 | 184 |
|
27565 | 185 |
$(BUILD_TOOLS_JDK): $(BUILD_INTERIM_JIMAGE) |
186 |
||
25859 | 187 |
java-tools: $(BUILD_TOOLS_JDK) |
188 |
||
189 |
all: java-tools |
|
190 |
||
191 |
endif # _TOOLS_GMK |
|
192 |