author | jmasa |
Fri, 29 Aug 2014 08:14:19 -0700 | |
changeset 26331 | 8f17e084029b |
parent 25859 | 3317bb8137f4 |
child 25991 | e48157b42439 |
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 |
|
35 |
include SetupJava.gmk |
|
36 |
||
23347
acb1d044a217
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23236
diff
changeset
|
37 |
# Cache all finds needed for this file. |
21805 | 38 |
$(eval $(call FillCacheFind, $(JDK_TOPDIR)/make/src/classes)) |
15126
bceb690ccf35
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14231
diff
changeset
|
39 |
|
12892 | 40 |
# The exception handling of swing beaninfo which have the own tool directory |
25859 | 41 |
ifeq (, $(BUILD_TOOLS_JDK)) |
42 |
$(eval $(call SetupJavaCompilation,BUILD_TOOLS_JDK, \ |
|
20547 | 43 |
SETUP := GENERATE_OLDBYTECODE, \ |
22967
bfcfd51c9e5c
8034193: Move X11 wrapper generator files to make/src and make/data
erikj
parents:
22650
diff
changeset
|
44 |
SRC := $(JDK_TOPDIR)/make/src/classes, \ |
20547 | 45 |
BIN := $(JDK_OUTPUTDIR)/btclasses)) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
46 |
endif |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
47 |
|
20547 | 48 |
$(JDK_OUTPUTDIR)/btclasses/build/tools/generatenimbus/resources/%.template: \ |
25859 | 49 |
$(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
|
50 |
$(call install-file) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
51 |
|
25859 | 52 |
BUILD_TOOLS_JDK += $(foreach i, $(wildcard $(JDK_TOPDIR)/src/java.desktop/share/classes/javax/swing/plaf/nimbus/*.template), $(JDK_OUTPUTDIR)/btclasses/build/tools/generatenimbus/resources/$(notdir $i)) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
53 |
|
21805 | 54 |
# Resource used by CheckDeps tool |
55 |
$(JDK_OUTPUTDIR)/btclasses/build/tools/deps/refs.allowed: \ |
|
56 |
$(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
|
57 |
$(call install-file) |
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15689
diff
changeset
|
58 |
|
25859 | 59 |
BUILD_TOOLS_JDK += $(JDK_OUTPUTDIR)/btclasses/build/tools/deps/refs.allowed |
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15689
diff
changeset
|
60 |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
61 |
# Add a checksum ("jsum") to the end of a text file. Prevents trivial tampering with class lists. |
23350 | 62 |
TOOL_ADDJSUM = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 63 |
build.tools.addjsum.AddJsum |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
64 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
65 |
# The buildmetaindex tool creates a meta-index to make core class loaders lazier. |
23350 | 66 |
TOOL_BUILDMETAINDEX = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 67 |
build.tools.buildmetaindex.BuildMetaIndex |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
68 |
|
23350 | 69 |
TOOL_COMPILEFONTCONFIG = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 70 |
build.tools.compilefontconfig.CompileFontConfig |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
71 |
|
23350 | 72 |
TOOL_COMPILEPROPERTIES = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 73 |
build.tools.compileproperties.CompileProperties |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
74 |
|
23350 | 75 |
TOOL_JARREORDER = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 76 |
build.tools.jarreorder.JarReorder |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
77 |
|
23350 | 78 |
TOOL_GENERATECHARACTER = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 79 |
build.tools.generatecharacter.GenerateCharacter |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
80 |
|
23350 | 81 |
TOOL_CHARACTERNAME = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 82 |
build.tools.generatecharacter.CharacterName |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
83 |
|
23350 | 84 |
TOOL_DTDBUILDER = $(JAVA_SMALL) -Ddtd_home=$(JDK_TOPDIR)/make/data/dtdbuilder \ |
23568 | 85 |
-Djava.awt.headless=true \ |
20547 | 86 |
-cp $(JDK_OUTPUTDIR)/btclasses build.tools.dtdbuilder.DTDBuilder |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
87 |
|
23350 | 88 |
TOOL_GENERATEBREAKITERATORDATA = $(JAVA_SMALL) \ |
20547 | 89 |
-cp $(JDK_OUTPUTDIR)/btclasses \ |
90 |
build.tools.generatebreakiteratordata.GenerateBreakIteratorData |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
91 |
|
23350 | 92 |
TOOL_GENERATECURRENCYDATA = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 93 |
build.tools.generatecurrencydata.GenerateCurrencyData |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
94 |
|
23350 | 95 |
TOOL_HASHER = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 96 |
build.tools.hasher.Hasher |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
97 |
|
23350 | 98 |
TOOL_TZDB = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 99 |
build.tools.tzdb.TzdbZoneRulesCompiler |
15289 | 100 |
|
25397 | 101 |
TOOL_BLACKLISTED_CERTS = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
102 |
build.tools.blacklistedcertsconverter.BlacklistedCertsConverter |
|
103 |
||
15289 | 104 |
|
20547 | 105 |
# 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
|
106 |
# and nbproject/project.properties in the same dir. Needs to be looked at. |
23350 | 107 |
TOOL_JDWPGEN = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses build.tools.jdwpgen.Main |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
108 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
109 |
# TODO: Lots of files in jdk/make/tools/CharsetMapping dir |
23350 | 110 |
TOOL_CHARSETMAPPING = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
22639
37f4508257fe
8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents:
22046
diff
changeset
|
111 |
build.tools.charsetmapping.Main $(LOG_INFO) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
112 |
|
23350 | 113 |
TOOL_SPP = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses build.tools.spp.Spp |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
114 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
115 |
# Nimbus is used somewhere in the swing build. |
23350 | 116 |
TOOL_GENERATENIMBUS = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 117 |
build.tools.generatenimbus.Generator |
12892 | 118 |
|
23350 | 119 |
TOOL_WRAPPERGENERATOR = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
22967
bfcfd51c9e5c
8034193: Move X11 wrapper generator files to make/src and make/data
erikj
parents:
22650
diff
changeset
|
120 |
build.tools.x11wrappergen.WrapperGenerator |
12892 | 121 |
|
23350 | 122 |
TOOL_AWT_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(JDK_OUTPUTDIR)/btclasses \ |
21805 | 123 |
build.tools.icondata.awt.ToBin |
13164 | 124 |
|
23350 | 125 |
TOOL_OSX_TOBIN = $(JAVA_SMALL) -Djava.awt.headless=true -cp $(JDK_OUTPUTDIR)/btclasses \ |
21805 | 126 |
build.tools.icondata.osxapp.ToBin |
14231 | 127 |
|
23350 | 128 |
TOOL_CLDRCONVERTER = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
20547 | 129 |
build.tools.cldrconverter.CLDRConverter |
13583 | 130 |
|
23350 | 131 |
TOOL_CHECKDEPS = $(JAVA_SMALL) -Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR) \ |
25859 | 132 |
-cp "$(JDK_OUTPUTDIR)/btclasses$(PATH_SEP)$(JDK_OUTPUTDIR)" \ |
20547 | 133 |
build.tools.deps.CheckDeps |
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15689
diff
changeset
|
134 |
|
25859 | 135 |
TOOL_GENMODULESXML = $(JAVA_SMALL) -Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR) \ |
136 |
-cp "$(JDK_OUTPUTDIR)/btclasses$(PATH_SEP)$(JDK_OUTPUTDIR)" \ |
|
137 |
build.tools.module.GenerateModulesXml |
|
138 |
||
23350 | 139 |
TOOL_ADDTORESTRICTEDPKGS = $(JAVA_SMALL) -cp $(JDK_OUTPUTDIR)/btclasses \ |
22650 | 140 |
build.tools.addtorestrictedpkgs.AddToRestrictedPkgs |
20774
330ea6efa3fd
8007292: Add JavaFX internal packages to package.access
mullan
parents:
18242
diff
changeset
|
141 |
|
13164 | 142 |
########################################################################################## |
143 |
||
144 |
# Tools needed on solaris because OBJCOPY is broken. |
|
145 |
||
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
20323
diff
changeset
|
146 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
20547 | 147 |
$(eval $(call SetupNativeCompilation,ADD_GNU_DEBUGLINK, \ |
21805 | 148 |
SRC := $(JDK_TOPDIR)/make/src/native/add_gnu_debuglink, \ |
20547 | 149 |
LANG := C, \ |
150 |
CC := $(BUILD_CC), \ |
|
151 |
LDEXE := $(BUILD_LD), \ |
|
152 |
LDFLAGS := -lelf, \ |
|
153 |
OBJECT_DIR := $(JDK_OUTPUTDIR)/objs/add_gnu_debuglink, \ |
|
154 |
OUTPUT_DIR := $(JDK_OUTPUTDIR)/btbin, \ |
|
155 |
PROGRAM := add_gnu_debuglink)) |
|
13164 | 156 |
|
20547 | 157 |
$(eval $(call SetupNativeCompilation,FIX_EMPTY_SEC_HDR_FLAGS, \ |
21805 | 158 |
SRC := $(JDK_TOPDIR)/make/src/native/fix_empty_sec_hdr_flags, \ |
20547 | 159 |
LANG := C, \ |
160 |
CC := $(BUILD_CC), \ |
|
161 |
LDEXE := $(BUILD_LD), \ |
|
162 |
LDFLAGS := -lelf, \ |
|
163 |
OBJECT_DIR := $(JDK_OUTPUTDIR)/objs/fix_empty_sec_hdr_flags, \ |
|
164 |
OUTPUT_DIR := $(JDK_OUTPUTDIR)/btbin, \ |
|
165 |
PROGRAM := fix_empty_sec_hdr_flags)) |
|
20887
e6ca3d58bfe9
7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents:
20323
diff
changeset
|
166 |
endif |
25859 | 167 |
|
168 |
java-tools: $(BUILD_TOOLS_JDK) |
|
169 |
||
170 |
all: java-tools |
|
171 |
||
172 |
endif # _TOOLS_GMK |
|
173 |