author | erikj |
Mon, 26 Jan 2015 10:28:53 +0100 | |
changeset 28600 | 09dd1740f176 |
parent 28360 | b7a477fa93b5 |
child 28601 | de178dea78cd |
permissions | -rw-r--r-- |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
2 |
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
6ec26f6cc53e
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 |
6ec26f6cc53e
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
6ec26f6cc53e
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
6ec26f6cc53e
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
6ec26f6cc53e
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 |
6ec26f6cc53e
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, |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
6ec26f6cc53e
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 |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
13697 | 26 |
# This makefile is much simpler now that it can use the smart javac wrapper |
27 |
# for dependency tracking between java packages and incremental compiles. |
|
28 |
# It could be even more simple if we added support for incremental jar updates |
|
29 |
# directly from the smart javac wrapper. |
|
30 |
||
31 |
# Cleaning/copying properties here is not a good solution. The properties |
|
32 |
# should be cleaned/copied by a annotation processor in sjavac. |
|
33 |
||
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
34 |
# When you read this source. Remember that $(sort ...) has the side effect |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
35 |
# of removing duplicates. It is actually this side effect that is |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
36 |
# desired whenever sort is used below! |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
37 |
|
25854 | 38 |
ifndef _JAVA_COMPILATION_GMK |
39 |
_JAVA_COMPILATION_GMK := 1 |
|
40 |
||
20363 | 41 |
ifeq (,$(_MAKEBASE_GMK)) |
42 |
$(error You must include MakeBase.gmk prior to including JavaCompilation.gmk) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
43 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
44 |
|
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
45 |
# Java compilation needs SetupZipArchive if we're generating a source zip. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
46 |
include ZipArchive.gmk |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
47 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
48 |
FALSE_FIND_PATTERN:=-name FILE_NAME_THAT_DOESNT_EXIST |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
49 |
|
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
50 |
# Setup make rules for defining a Java compiler, which is needed to compile |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
51 |
# Java code. This rule generates no output. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
52 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
53 |
# Parameter 1 is the name of the compiler definition. This name needs to be |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
54 |
# passed to SetupJavaCompilation. This name is used as variable prefix. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
55 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
56 |
# Remaining parameters are named arguments. These include: |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
57 |
# JVM:=The jvm used to run the javac/javah command |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
58 |
# JAVAC:=The javac jar and bootstrap classpath changes, or just bin/javac if JVM is left out |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
59 |
# FLAGS:=Flags to be supplied to javac |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
60 |
# SERVER_DIR:=Use a javac server (-XDserver) and store the server related files here |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
61 |
# SERVER_JVM:=Use this JVM for the server. Defaults to the JVM above. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
62 |
define SetupJavaCompiler |
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
63 |
$(if $(16),$(error Internal makefile error: Too many arguments to SetupJavaCompiler, please update JavaCompilation.gmk)) |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
64 |
$(call EvalDebugWrapper,$(strip $1),$(call SetupJavaCompilerInner,$(strip $1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))) |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
65 |
endef |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
66 |
|
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
67 |
define SetupJavaCompilerInner |
20363 | 68 |
$(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE)) |
69 |
$(call LogSetupMacroEntry,SetupJavaCompiler($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15)) |
|
70 |
$(if $(16),$(error Internal makefile error: Too many arguments to SetupJavaCompiler, please update JavaCompilation.gmk)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
71 |
|
20363 | 72 |
# The port file contains the tcp/ip on which the server listens |
73 |
# and the cookie necessary to talk to the server. |
|
74 |
$1_SJAVAC_PORTFILE:=$$($1_SERVER_DIR)/server.port |
|
75 |
# You can use a different JVM to run the background javac server. |
|
76 |
ifeq ($$($1_SERVER_JVM),) |
|
77 |
# It defaults to the same JVM that is used to start the javac command. |
|
78 |
$1_SERVER_JVM:=$$($1_JVM) |
|
79 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
80 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
81 |
|
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
82 |
# Setup make rules for creating a jar archive. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
83 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
84 |
# Parameter 1 is the name of the rule. This name is used as variable prefix, |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
85 |
# and the targets generated are listed in a variable by that name. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
86 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
87 |
# Remaining parameters are named arguments. These include: |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
88 |
# SRCS:=List of directories in where to find files to add to archive |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
89 |
# SUFFIXES:=File suffixes to include in jar |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
90 |
# INCLUDES:=List of directories/packages in SRCS that should be included |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
91 |
# EXCLUDES:=List of directories/packages in SRCS that should be excluded |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
92 |
# EXCLUDE_FILES:=List of files in SRCS that should be excluded |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
93 |
# EXTRA_FILES:=List of files in SRCS that should be included regardless of suffix match. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
94 |
# JAR:=Jar file to create |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
95 |
# MANIFEST:=Optional manifest file template. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
96 |
# JARMAIN:=Optional main class to add to manifest |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
97 |
# JARINDEX:=true means generate the index in the jar file. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
98 |
# SKIP_METAINF:=Set to prevent contents of an META-INF directory to be automatically |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
99 |
# added to the archive. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
100 |
# EXTRA_MANIFEST_ATTR:=Extra attribute to add to manifest. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
101 |
# CHECK_COMPRESS_JAR Check the COMPRESS_JAR variable |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
102 |
define SetupArchive |
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
103 |
$(if $(16),$(error Internal makefile error: Too many arguments to SetupArchive, please update JavaCompilation.gmk)) |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
104 |
$(call EvalDebugWrapper,$(strip $1),$(call SetupArchiveInner,$(strip $1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))) |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
105 |
endef |
20363 | 106 |
|
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
107 |
define SetupArchiveInner |
20363 | 108 |
# NOTE: $2 is dependencies, not a named argument! |
109 |
$(foreach i,3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE)) |
|
110 |
$(call LogSetupMacroEntry,SetupArchive($1),<dependencies>,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15)) |
|
20364 | 111 |
$(if $(findstring $(LOG_LEVEL),trace), $(info *[2] <dependencies> = $(strip $2))) |
20363 | 112 |
$(if $(16),$(error Internal makefile error: Too many arguments to SetupArchive, please update JavaCompilation.gmk)) |
14111 | 113 |
|
20363 | 114 |
$1_JARMAIN:=$(strip $$($1_JARMAIN)) |
115 |
$1_JARNAME:=$$(notdir $$($1_JAR)) |
|
116 |
$1_MANIFEST_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_manifest |
|
117 |
$1_DELETESS_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletess |
|
118 |
$1_DELETES_FILE:=$$(dir $$($1_JAR))_the.$$($1_JARNAME)_deletes |
|
119 |
$1_BIN:=$$(dir $$($1_JAR)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
120 |
|
20363 | 121 |
ifeq (,$$($1_SUFFIXES)) |
122 |
# No suffix was set, default to classes. |
|
123 |
$1_SUFFIXES:=.class |
|
124 |
endif |
|
125 |
# Convert suffixes to a find expression |
|
126 |
$1_FIND_PATTERNS:=$(FALSE_FIND_PATTERN) $$(patsubst %,$(SPACE)-o$(SPACE)-name$(SPACE)$(DQUOTE)*%$(DQUOTE),$$($1_SUFFIXES)) |
|
127 |
# On windows, a lot of includes/excludes risk making the command line too long, so |
|
128 |
# writing the grep patterns to files. |
|
129 |
ifneq (,$$($1_INCLUDES)) |
|
25854 | 130 |
$1_GREP_INCLUDE_PATTERNS:=$$(call EscapeDollar, \ |
131 |
$$(foreach src,$$($1_SRCS), $$(addprefix $$(src)/,$$($1_INCLUDES)))) |
|
20363 | 132 |
# If there are a lot of include patterns, output to file to shorten command lines |
133 |
ifeq ($$(word 20,$$($1_GREP_INCLUDE_PATTERNS)),) |
|
134 |
$1_GREP_INCLUDES:=| $(GREP) $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_INCLUDE_PATTERNS)) |
|
135 |
else |
|
20364 | 136 |
$1_GREP_INCLUDE_OUTPUT:=$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_include $$(NEWLINE) \ |
137 |
$$(call ListPathsSafely,$1_GREP_INCLUDE_PATTERNS,\n, \ |
|
138 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_include) |
|
20363 | 139 |
$1_GREP_INCLUDES:=| $(GREP) -f $$($1_BIN)/_the.$$($1_JARNAME)_include |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
140 |
endif |
20363 | 141 |
endif |
142 |
ifneq (,$$($1_EXCLUDES)$$($1_EXCLUDE_FILES)) |
|
25854 | 143 |
$1_GREP_EXCLUDE_PATTERNS:=$$(call EscapeDollar, \ |
144 |
$$(foreach src,$$($1_SRCS),$$(addprefix $$(src)/, \ |
|
145 |
$$($1_EXCLUDES) $$($1_EXCLUDE_FILES)))) |
|
20363 | 146 |
# If there are a lot of include patterns, output to file to shorten command lines |
147 |
ifeq ($$(word 20,$$($1_GREP_EXCLUDE_PATTERNS)),) |
|
148 |
$1_GREP_EXCLUDES:=| $(GREP) -v $$(patsubst %,$(SPACE)-e$(SPACE)$(DQUOTE)%$(DQUOTE),$$($1_GREP_EXCLUDE_PATTERNS)) |
|
12801 | 149 |
else |
20364 | 150 |
$1_GREP_EXCLUDE_OUTPUT=$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_exclude $$(NEWLINE) \ |
151 |
$$(call ListPathsSafely,$1_GREP_EXCLUDE_PATTERNS,\n, \ |
|
152 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_exclude) |
|
20363 | 153 |
$1_GREP_EXCLUDES:=| $(GREP) -v -f $$($1_BIN)/_the.$$($1_JARNAME)_exclude |
12801 | 154 |
endif |
20363 | 155 |
endif |
156 |
||
157 |
# Check if this jar needs to have its index generated. |
|
158 |
ifneq (,$$($1_JARINDEX)) |
|
159 |
$1_JARINDEX = (cd $$(dir $$@) && $(JAR) -i $$(notdir $$@)) |
|
160 |
else |
|
161 |
$1_JARINDEX = true |
|
162 |
endif |
|
163 |
# When this macro is run in the same makefile as the java compilation, dependencies are |
|
164 |
# transfered in make variables. When the macro is run in a different makefile than the |
|
165 |
# java compilation, the dependencies need to be found in the filesystem. |
|
166 |
ifneq (,$2) |
|
167 |
$1_DEPS:=$2 |
|
168 |
else |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
169 |
# Add all source roots to the find cache since we are likely going to run find |
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
170 |
# on these more than once. The cache will only be updated if necessary. |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
171 |
$$(eval $$(call FillCacheFind, $$($1_FIND_LIST))) |
20363 | 172 |
$1_DEPS:=$$(filter $$(addprefix %,$$($1_SUFFIXES)), \ |
173 |
$$(call CacheFind,$$($1_SRCS))) |
|
174 |
ifneq (,$$($1_GREP_INCLUDE_PATTERNS)) |
|
175 |
$1_DEPS:=$$(filter $$(addsuffix %,$$($1_GREP_INCLUDE_PATTERNS)),$$($1_DEPS)) |
|
12801 | 176 |
endif |
20363 | 177 |
ifneq (,$$($1_GREP_EXCLUDE_PATTERNS)) |
178 |
$1_DEPS:=$$(filter-out $$(addsuffix %,$$($1_GREP_EXCLUDE_PATTERNS)),$$($1_DEPS)) |
|
179 |
endif |
|
25854 | 180 |
# Look for EXTRA_FILES in all SRCS dirs and as absolute paths. |
181 |
$1_DEPS+=$$(wildcard $$(foreach src, $$($1_SRCS), \ |
|
182 |
$$(addprefix $$(src)/, $$($1_EXTRA_FILES))) $$($1_EXTRA_FILES)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
183 |
ifeq (,$$($1_SKIP_METAINF)) |
20363 | 184 |
$1_DEPS+=$$(call CacheFind,$$(wildcard $$(addsuffix /META-INF,$$($1_SRCS)))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
185 |
endif |
20363 | 186 |
endif |
23169
fdc2570ccbf4
8037238: JDK 9 images don't rebuild when access bridge jars rebuild
erikj
parents:
23167
diff
changeset
|
187 |
# The dependency list should never be empty |
fdc2570ccbf4
8037238: JDK 9 images don't rebuild when access bridge jars rebuild
erikj
parents:
23167
diff
changeset
|
188 |
ifeq ($$(strip $$($1_DEPS)), ) |
fdc2570ccbf4
8037238: JDK 9 images don't rebuild when access bridge jars rebuild
erikj
parents:
23167
diff
changeset
|
189 |
$$(warning No dependencies found for $1) |
fdc2570ccbf4
8037238: JDK 9 images don't rebuild when access bridge jars rebuild
erikj
parents:
23167
diff
changeset
|
190 |
endif |
20363 | 191 |
|
192 |
# Utility macros, to make the shell script receipt somewhat easier to decipher. |
|
12801 | 193 |
|
25854 | 194 |
# Capture extra files is the same for both CAPTURE_CONTENTS and SCAPTURE_CONTENTS so |
195 |
# only define it once to avoid duplication. |
|
196 |
# The list of extra files might be long, so need to use ListPathsSafely to print |
|
197 |
# them out to a separte file. Then process the contents of that file to rewrite |
|
198 |
# into -C <dir> <file> lines. |
|
199 |
# The EXTRA_FILES_RESOLVED varible must be set in the macro so that it's evaluated |
|
200 |
# in the recipe when the files are guaranteed to exist. |
|
201 |
$1_CAPTURE_EXTRA_FILES=\ |
|
202 |
$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_contents.extra $$(NEWLINE) \ |
|
203 |
$$(eval $1_EXTRA_FILES_RESOLVED:=$$(call DoubleDollar, $$(call DoubleDollar, \ |
|
204 |
$$(wildcard $$(foreach src, $$($1_SRCS), \ |
|
205 |
$$(addprefix $$(src)/, $$($1_EXTRA_FILES))) $$($1_EXTRA_FILES))))) \ |
|
206 |
$$(if $$($1_EXTRA_FILES_RESOLVED), \ |
|
207 |
$$(call ListPathsSafely,$1_EXTRA_FILES_RESOLVED,\n, \ |
|
208 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_contents.extra) $$(NEWLINE) \ |
|
209 |
$(SED) $$(foreach src,$$($1_SRCS), -e 's|$$(src)/|-C $$(src) |g') \ |
|
210 |
$$($1_BIN)/_the.$$($1_JARNAME)_contents.extra \ |
|
211 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE)) |
|
212 |
||
20363 | 213 |
# The capture contents macro finds all files (matching the patterns, typically |
214 |
# .class and .prp) that are newer than the jar-file, ie the new content to be put into the jar. |
|
22467 | 215 |
# NOTICE: please leave the parentheses space separated otherwise the AIX build will break! |
25854 | 216 |
$1_CAPTURE_CONTENTS=\ |
217 |
$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE) \ |
|
218 |
$$(foreach src,$$($1_SRCS), \ |
|
219 |
$(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) -a -newer $$@ $$($1_GREP_INCLUDES) \ |
|
220 |
$$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/|-C $$(src) |g' \ |
|
221 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE)) \ |
|
222 |
$$($1_CAPTURE_EXTRA_FILES) |
|
223 |
||
20363 | 224 |
# The capture metainf macro finds all files below the META-INF directory that are newer than the jar-file. |
225 |
ifeq (,$$($1_SKIP_METAINF)) |
|
25854 | 226 |
$1_CAPTURE_METAINF =$$(foreach src,$$($1_SRCS), \ |
227 |
( $(FIND) $$(src)/META-INF -type f -a -newer $$@ 2> /dev/null | $(SED) 's|$$(src)/|-C $$(src) |g' >> \ |
|
228 |
$$($1_BIN)/_the.$$($1_JARNAME)_contents ) $$(NEWLINE) ) |
|
20363 | 229 |
endif |
230 |
# The capture deletes macro finds all deleted files and concatenates them. The resulting file |
|
231 |
# tells us what to remove from the jar-file. |
|
25854 | 232 |
$1_CAPTURE_DELETES=$$(foreach src,$$($1_SRCS),($(FIND) $$(src) -name _the.package.deleted -newer $$@ \ |
233 |
-exec $(SED) 's|$$(src)||g' \{\} >> $$($1_DELETES_FILE) \;) $$(NEWLINE)) |
|
20363 | 234 |
# The update contents macro updates the jar file with the previously capture contents. |
22467 | 235 |
# Use 'wc -w' to see if the contents file is empty. |
25854 | 236 |
$1_UPDATE_CONTENTS=\ |
237 |
if [ "`$(WC) -l $$($1_BIN)/_the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'`" -gt "0" ]; then \ |
|
238 |
$(ECHO) " updating" `$(WC) -l $$($1_BIN)/_the.$$($1_JARNAME)_contents | $(AWK) '{ print $$$$1 }'` files && \ |
|
239 |
$(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @$$($1_BIN)/_the.$$($1_JARNAME)_contents; \ |
|
240 |
fi $$(NEWLINE) |
|
20363 | 241 |
# The s-variants of the above macros are used when the jar is created from scratch. |
22467 | 242 |
# NOTICE: please leave the parentheses space separated otherwise the AIX build will break! |
25854 | 243 |
$1_SCAPTURE_CONTENTS=\ |
244 |
$(RM) $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE) \ |
|
245 |
$$(foreach src,$$($1_SRCS), \ |
|
246 |
$(FIND) $$(src) -type f -a \( $$($1_FIND_PATTERNS) \) $$($1_GREP_INCLUDES) \ |
|
247 |
$$($1_GREP_EXCLUDES) | $(SED) 's|$$(src)/|-C $$(src) |g' \ |
|
248 |
>> $$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE)) \ |
|
249 |
$$($1_CAPTURE_EXTRA_FILES) |
|
13132 | 250 |
|
20363 | 251 |
ifeq (,$$($1_SKIP_METAINF)) |
252 |
$1_SCAPTURE_METAINF=$$(foreach src,$$($1_SRCS), \ |
|
25854 | 253 |
( $(FIND) $$(src)/META-INF -type f 2> /dev/null | $(SED) 's|$$(src)/|-C $$(src) |g' >> \ |
254 |
$$($1_BIN)/_the.$$($1_JARNAME)_contents) $$(NEWLINE) ) |
|
20363 | 255 |
endif |
25854 | 256 |
$1_SUPDATE_CONTENTS=$(JAR) $$($1_JAR_UPDATE_OPTIONS) $$@ @$$($1_BIN)/_the.$$($1_JARNAME)_contents $$(NEWLINE) |
20363 | 257 |
|
258 |
# Use a slightly shorter name for logging, but with enough path to identify this jar. |
|
259 |
$1_NAME:=$$(subst $$(OUTPUT_ROOT)/,,$$($1_JAR)) |
|
260 |
||
261 |
ifneq (,$$($1_CHECK_COMPRESS_JAR)) |
|
262 |
$1_JAR_CREATE_OPTIONS := c0fm |
|
263 |
$1_JAR_UPDATE_OPTIONS := u0f |
|
264 |
ifeq ($(COMPRESS_JARS), true) |
|
265 |
$1_JAR_CREATE_OPTIONS := cfm |
|
266 |
$1_JAR_UPDATE_OPTIONS := uf |
|
13132 | 267 |
endif |
20363 | 268 |
else |
269 |
$1_JAR_CREATE_OPTIONS := cfm |
|
270 |
$1_JAR_UPDATE_OPTIONS := uf |
|
271 |
endif |
|
13132 | 272 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
273 |
# Include all variables of significance in the vardeps file |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
274 |
$1_VARDEPS := $(JAR) $$($1_JAR_CREATE_OPTIONS) $$($1_MANIFEST) $(RELEASE) $(COMPANY_NAME) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
275 |
$$($1_JARMAIN) $$($1_EXTRA_MANIFEST_ATTR) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
276 |
$1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, $$(dir $$($1_JAR))_the.$$($1_JARNAME).vardeps) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
277 |
|
20363 | 278 |
# Here is the rule that creates/updates the jar file. |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
279 |
$$($1_JAR) : $$($1_DEPS) $$($1_MANIFEST) $$($1_VARDEPS_FILE) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
280 |
$(MKDIR) -p $$($1_BIN) |
15051
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14613
diff
changeset
|
281 |
$$($1_GREP_INCLUDE_OUTPUT) |
d32ad37472e6
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14613
diff
changeset
|
282 |
$$($1_GREP_EXCLUDE_OUTPUT) |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
283 |
# If the vardeps file is part of the newer prereq list, it means that |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
284 |
# either the jar file does not exist, or we need to recreate it from |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
285 |
# from scratch anyway since a simple update will not catch all the |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
286 |
# potential changes. |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
287 |
$$(if $$(filter $$($1_VARDEPS_FILE) $$($1_MANIFEST), $$?), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
288 |
$$(if $$($1_MANIFEST), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
289 |
$(SED) -e "s#@@RELEASE@@#$(RELEASE)#" \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
290 |
-e "s#@@COMPANY_NAME@@#$(COMPANY_NAME)#" $$($1_MANIFEST) > $$($1_MANIFEST_FILE) $$(NEWLINE) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
291 |
, \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
292 |
$(RM) $$($1_MANIFEST_FILE) && $(TOUCH) $$($1_MANIFEST_FILE) $$(NEWLINE)) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
293 |
$$(if $$($1_JARMAIN), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
294 |
$(ECHO) "Main-Class: $$(strip $$($1_JARMAIN))" >> $$($1_MANIFEST_FILE) $$(NEWLINE)) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
295 |
$$(if $$($1_EXTRA_MANIFEST_ATTR), \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
296 |
$(PRINTF) "$$($1_EXTRA_MANIFEST_ATTR)\n" >> $$($1_MANIFEST_FILE) $$(NEWLINE)) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
297 |
$(ECHO) Creating $$($1_NAME) $$(NEWLINE) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
298 |
$(JAR) $$($1_JAR_CREATE_OPTIONS) $$@ $$($1_MANIFEST_FILE) $$(NEWLINE) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
299 |
$$($1_SCAPTURE_CONTENTS) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
300 |
$$($1_SCAPTURE_METAINF) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
301 |
$$($1_SUPDATE_CONTENTS) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
302 |
$$($1_JARINDEX) && true \ |
20363 | 303 |
, \ |
304 |
$(ECHO) Modifying $$($1_NAME) $$(NEWLINE) \ |
|
305 |
$$($1_CAPTURE_CONTENTS) \ |
|
306 |
$$($1_CAPTURE_METAINF) \ |
|
307 |
$(RM) $$($1_DELETES_FILE) $$(NEWLINE) \ |
|
308 |
$$($1_CAPTURE_DELETES) \ |
|
309 |
$(CAT) $$($1_DELETES_FILE) > $$($1_DELETESS_FILE) $$(NEWLINE) \ |
|
310 |
if [ -s $$($1_DELETESS_FILE) ]; then \ |
|
311 |
$(ECHO) " deleting" `$(WC) -l $$($1_DELETESS_FILE) | $(AWK) '{ print $$$$1 }'` files && \ |
|
312 |
$(ZIP) -q -d $$@ `$(CAT) $$($1_DELETESS_FILE)` ; \ |
|
313 |
fi $$(NEWLINE) \ |
|
314 |
$$($1_UPDATE_CONTENTS) true $$(NEWLINE) \ |
|
315 |
$$($1_JARINDEX) && true ) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
316 |
|
22480
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
317 |
# Add jar to target list |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
318 |
$1 += $$($1_JAR) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
319 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
320 |
|
20363 | 321 |
$1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES)))) |
27560 | 322 |
ifneq ($$($1_EXCLUDE_FILES),) |
323 |
# Cannot precompute ZIP_EXCLUDE_FILES as it is dependent on which src root is being |
|
324 |
# zipped at the moment. |
|
325 |
$1_SRC_EXCLUDE_FILES := $$(addprefix %, $$($1_EXCLUDE_FILES)) $$($1_EXCLUDE_FILES) |
|
326 |
$1_ALL_SRCS := $$(filter-out $$($1_SRC_EXCLUDE_FILES), $$($1_ALL_SRCS)) |
|
327 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
328 |
define add_file_to_copy |
20363 | 329 |
# param 1 = BUILD_MYPACKAGE |
330 |
# parma 2 = The source file to copy. |
|
331 |
$2_TARGET:=$2 |
|
332 |
# Remove the source prefix. |
|
333 |
$$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET))) |
|
25854 | 334 |
# To allow for automatic overrides, do not create a rule for a target file that |
335 |
# already has one |
|
336 |
ifeq ($$(findstring $$($2_TARGET), $$($1_COPY_LIST)), ) |
|
337 |
$1_COPY_LIST += $$($2_TARGET) |
|
338 |
# Now we can setup the depency that will trigger the copying. |
|
339 |
$$($1_BIN)$$($2_TARGET) : $2 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
340 |
$(MKDIR) -p $$(@D) |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
341 |
$(CP) $$< $$@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
342 |
$(CHMOD) -f ug+w $$@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
343 |
|
25854 | 344 |
# And do not forget this target |
345 |
$1_ALL_COPY_TARGETS += $$($1_BIN)$$($2_TARGET) |
|
346 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
347 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
348 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
349 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
350 |
# This macro is used only for properties files that are to be |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
351 |
# copied over to the classes directory in cleaned form: |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
352 |
# Previously this was inconsistently done in different repositories. |
13697 | 353 |
# This is the new clean standard. Though it is to be superseded by |
354 |
# a standard annotation processor from with sjavac. |
|
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
355 |
# |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
356 |
# The sed expression does this: |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
357 |
# 1. Add a backslash before any :, = or ! that do not have a backslash already. |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
358 |
# 2. Apply the file unicode2x.sed which does a whole bunch of \u00XX to \xXX |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
359 |
# conversions. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
360 |
# 3. Delete all lines starting with #. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
361 |
# 4. Delete empty lines. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
362 |
# 5. Append lines ending with \ with the next line. |
24080
8bfff14321a9
8041265: jdk/bin/rmic -iiop failed on macosx-x86_64 with "Class sun.rmi.rmic.iiop.BatchEnvironmen not found"
erikj
parents:
23983
diff
changeset
|
363 |
# 6. Remove leading and trailing white space. Note that tabs must be explicit |
8bfff14321a9
8041265: jdk/bin/rmic -iiop failed on macosx-x86_64 with "Class sun.rmi.rmic.iiop.BatchEnvironmen not found"
erikj
parents:
23983
diff
changeset
|
364 |
# as sed on macosx does not understand '\t'. |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
365 |
# 7. Replace the first \= with just =. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
366 |
# 8. Finally it's all sorted to create a stable output. |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
367 |
# |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
368 |
# It is assumed that = is the character used for separating names and values. |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
369 |
define add_file_to_clean |
20363 | 370 |
# param 1 = BUILD_MYPACKAGE |
371 |
# parma 2 = The source file to copy and clean. |
|
372 |
$2_TARGET:=$2 |
|
373 |
# Remove the source prefix. |
|
374 |
$$(foreach i,$$($1_SRC),$$(eval $$(call remove_string,$$i,$2_TARGET))) |
|
375 |
# Now we can setup the depency that will trigger the copying. |
|
376 |
$$($1_BIN)$$($2_TARGET) : $2 |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
377 |
$(MKDIR) -p $$(@D) |
27591
f8f4973d2329
8065138: Encodings.isRecognizedEnconding sometimes fails to recognize 'UTF8'
erikj
parents:
26671
diff
changeset
|
378 |
export LC_ALL=C ; $(CAT) $$< \ |
f8f4973d2329
8065138: Encodings.isRecognizedEnconding sometimes fails to recognize 'UTF8'
erikj
parents:
26671
diff
changeset
|
379 |
| $(SED) -e 's/\([^\\]\):/\1\\:/g' -e 's/\([^\\]\)=/\1\\=/g' \ |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
380 |
-e 's/\([^\\]\)!/\1\\!/g' -e 's/#.*/#/g' \ |
21759 | 381 |
| $(SED) -f "$(SRC_ROOT)/make/common/support/unicode2x.sed" \ |
20363 | 382 |
| $(SED) -e '/^#/d' -e '/^$$$$/d' \ |
383 |
-e :a -e '/\\$$$$/N; s/\\\n//; ta' \ |
|
24080
8bfff14321a9
8041265: jdk/bin/rmic -iiop failed on macosx-x86_64 with "Class sun.rmi.rmic.iiop.BatchEnvironmen not found"
erikj
parents:
23983
diff
changeset
|
384 |
-e 's/^[ ]*//;s/[ ]*$$$$//' \ |
27591
f8f4973d2329
8065138: Encodings.isRecognizedEnconding sometimes fails to recognize 'UTF8'
erikj
parents:
26671
diff
changeset
|
385 |
-e 's/\\=/=/' \ |
f8f4973d2329
8065138: Encodings.isRecognizedEnconding sometimes fails to recognize 'UTF8'
erikj
parents:
26671
diff
changeset
|
386 |
| $(SORT) > $$@ |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
387 |
$(CHMOD) -f ug+w $$@ |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
388 |
|
20363 | 389 |
# And do not forget this target |
390 |
$1_ALL_COPY_CLEAN_TARGETS += $$($1_BIN)$$($2_TARGET) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
391 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
392 |
|
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
393 |
define remove_string |
20363 | 394 |
$2 := $$(subst $1,,$$($2)) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
395 |
endef |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
396 |
|
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
397 |
# Setup make rules for compiling Java source code to class files and/or a |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
398 |
# resulting jar file. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
399 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
400 |
# Parameter 1 is the name of the rule. This name is used as variable prefix, |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
401 |
# and the targets generated are listed in a variable by that name. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
402 |
# |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
403 |
# Remaining parameters are named arguments. These include: |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
404 |
# SETUP:=must point to a previously setup java compiler, for example: SETUP:=BOOTJAVAC |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
405 |
# JVM:=path to ..bin/java |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
406 |
# ADD_JAVAC_FLAGS:=javac flags to append to the default ones. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
407 |
# SRC:=one or more directories to search for sources |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
408 |
# BIN:=store classes here |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
409 |
# INCLUDES:=myapp.foo means will only compile java files in myapp.foo or any of its sub-packages. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
410 |
# EXCLUDES:=myapp.foo means will do not compile java files in myapp.foo or any of its sub-packages. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
411 |
# COPY:=.prp means copy all prp files to the corresponding package in BIN. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
412 |
# COPY_FILES:=myapp/foo/setting.txt means copy this file over to the package myapp/foo |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
413 |
# CLEAN:=.properties means copy and clean all properties file to the corresponding package in BIN. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
414 |
# CLEAN_FILES:=myapp/foo/setting.txt means clean this file over to the package myapp/foo |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
415 |
# SRCZIP:=Create a src.zip based on the found sources and copied files. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
416 |
# INCLUDE_FILES:="com/sun/SolarisFoobar.java" means only compile this file! |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
417 |
# EXCLUDE_FILES:="com/sun/SolarisFoobar.java" means do not compile this particular file! |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
418 |
# "SolarisFoobar.java" means do not compile SolarisFoobar, wherever it is found. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
419 |
# HEADERS:=path to directory where all generated c-headers are written. |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
420 |
# DEPENDS:=Extra dependecy |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
421 |
# DISABLE_SJAVAC:=Explicitly disable the use of sjavac for this compilation unit. |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
422 |
define SetupJavaCompilation |
27592
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
423 |
$(if $(16),$(error Internal makefile error: Too many arguments to SetupJavaCompilation, please update JavaCompilation.gmk)) |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
424 |
$(call EvalDebugWrapper,$(strip $1),$(call SetupJavaCompilationInner,$(strip $1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15))) |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
425 |
endef |
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
426 |
|
af7df0dd5ff7
8065911: Introduce EvalDebugWrapper for all Setup* macros
ihse
parents:
27591
diff
changeset
|
427 |
define SetupJavaCompilationInner |
20363 | 428 |
$(foreach i,2 3 4 5 6 7 8 9 10 11 12 13 14 15, $(if $($i),$1_$(strip $($i)))$(NEWLINE)) |
429 |
$(call LogSetupMacroEntry,SetupJavaCompilation($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11),$(12),$(13),$(14),$(15)) |
|
430 |
$(if $(16),$(error Internal makefile error: Too many arguments to SetupJavaCompilation, please update JavaCompilation.gmk)) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
431 |
|
20363 | 432 |
# Extract the info from the java compiler setup. |
433 |
$1_JVM := $$($$($1_SETUP)_JVM) |
|
434 |
$1_JAVAC := $$($$($1_SETUP)_JAVAC) |
|
435 |
$1_FLAGS := $$($$($1_SETUP)_FLAGS) $(JAVAC_FLAGS) $$($1_ADD_JAVAC_FLAGS) |
|
436 |
ifeq ($$($1_JAVAC),) |
|
437 |
$$(error The Java compilation $1 refers to a non-existant java compiler setup $$($1_SETUP)) |
|
438 |
endif |
|
439 |
$1_SJAVAC_PORTFILE := $$($$($1_SETUP)_SJAVAC_PORTFILE) |
|
440 |
$1_SERVER_JVM := $$($$($1_SETUP)_SERVER_JVM) |
|
441 |
||
442 |
# Handle addons and overrides. |
|
443 |
$1_SRC:=$$(call ADD_SRCS,$$($1_SRC)) |
|
444 |
# Make sure the dirs exist. |
|
445 |
$$(foreach d,$$($1_SRC), $$(if $$(wildcard $$d),,$$(error SRC specified to SetupJavaCompilation $1 contains missing directory $$d))) |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
446 |
$$(call MakeDir,$$($1_BIN)) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27592
diff
changeset
|
447 |
# Add all source roots to the find cache since we are likely going to run find |
23170
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
448 |
# on these more than once. The cache will only be updated if necessary. |
51e606ecede5
8037281: Improve CacheFind and enable on all platforms
erikj
parents:
23169
diff
changeset
|
449 |
$$(eval $$(call FillCacheFind,$$($1_SRC))) |
25854 | 450 |
# Find all files in the source trees. Preserve order of source roots for overrides to |
451 |
# work correctly. CacheFind does not preserve order so need to call it for each root. |
|
452 |
$1_ALL_SRCS += $$(filter-out $(OVR_SRCS),$$(foreach s,$$($1_SRC),$$(call CacheFind,$$(s)))) |
|
20363 | 453 |
# Extract the java files. |
454 |
ifneq ($$($1_EXCLUDE_FILES),) |
|
455 |
$1_EXCLUDE_FILES_PATTERN:=$$(addprefix %,$$($1_EXCLUDE_FILES)) |
|
456 |
endif |
|
457 |
$1_SRCS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$(filter %.java,$$($1_ALL_SRCS))) |
|
458 |
ifneq ($$($1_INCLUDE_FILES),) |
|
459 |
$1_INCLUDE_FILES:=$$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$($1_INCLUDE_FILES))) |
|
460 |
$1_SRCS := $$(filter $$($1_INCLUDE_FILES), $$($1_SRCS)) |
|
461 |
endif |
|
462 |
||
463 |
# Now we have a list of all java files to compile: $$($1_SRCS) |
|
464 |
||
465 |
# Create the corresponding smart javac wrapper command line. |
|
23983
fa89aaeb38c2
8037085: The sjavac exclude option should accept valid directory identifiers
alundblad
parents:
23170
diff
changeset
|
466 |
$1_SJAVAC_ARGS:=$$(addprefix -x ,$$(addsuffix /*,$$($1_EXCLUDES))) \ |
fa89aaeb38c2
8037085: The sjavac exclude option should accept valid directory identifiers
alundblad
parents:
23170
diff
changeset
|
467 |
$$(addprefix -i ,$$(addsuffix /*,$$($1_INCLUDES))) \ |
20363 | 468 |
$$(addprefix -xf *,$$(strip $$($1_EXCLUDE_FILES))) \ |
469 |
$$(addprefix -if *,$$(strip $$($1_INCLUDE_FILES))) \ |
|
470 |
-src "$$(subst $$(SPACE),$$(PATH_SEP),$$(strip $$($1_SRC)))" |
|
13697 | 471 |
|
20363 | 472 |
# Prepend the source/bin path to the filter expressions. |
473 |
ifneq ($$($1_INCLUDES),) |
|
474 |
$1_SRC_INCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_INCLUDES)))) |
|
475 |
$1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS)) |
|
476 |
endif |
|
477 |
ifneq ($$($1_EXCLUDES),) |
|
478 |
$1_SRC_EXCLUDES := $$(foreach i,$$($1_SRC),$$(addprefix $$i/,$$(addsuffix /%,$$($1_EXCLUDES)))) |
|
479 |
$1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS)) |
|
480 |
endif |
|
481 |
||
25854 | 482 |
# All files below META-INF are always copied. |
483 |
$1_ALL_COPIES := $$(filter $$(addsuffix /META-INF%,$$($1_SRC)),$$($1_ALL_SRCS)) |
|
20363 | 484 |
# Find all files to be copied from source to bin. |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
485 |
ifneq (,$$($1_COPY)$$($1_COPY_FILES)) |
20363 | 486 |
# Search for all files to be copied. |
25854 | 487 |
$1_ALL_COPIES += $$(filter $$(addprefix %,$$($1_COPY)),$$($1_ALL_SRCS)) |
20363 | 488 |
# Copy these explicitly |
489 |
$1_ALL_COPIES += $$($1_COPY_FILES) |
|
490 |
# Copy must also respect filters. |
|
491 |
ifneq (,$$($1_INCLUDES)) |
|
492 |
$1_ALL_COPIES := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_COPIES)) |
|
13697 | 493 |
endif |
20363 | 494 |
ifneq (,$$($1_EXCLUDES)) |
495 |
$1_ALL_COPIES := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_COPIES)) |
|
496 |
endif |
|
497 |
ifneq (,$$($1_EXCLUDE_FILES)) |
|
498 |
$1_ALL_COPIES := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_COPIES)) |
|
13697 | 499 |
endif |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
500 |
endif |
25854 | 501 |
ifneq (,$$($1_ALL_COPIES)) |
502 |
# Yep, there are files to be copied! |
|
503 |
$1_ALL_COPY_TARGETS:= |
|
504 |
$$(foreach i,$$($1_ALL_COPIES),$$(eval $$(call add_file_to_copy,$1,$$i))) |
|
505 |
# Now we can depend on $$($1_ALL_COPY_TARGETS) to copy all files! |
|
506 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
507 |
|
20363 | 508 |
# Find all property files to be copied and cleaned from source to bin. |
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
509 |
ifneq (,$$($1_CLEAN)$$($1_CLEAN_FILES)) |
20363 | 510 |
# Search for all files to be copied. |
511 |
$1_ALL_CLEANS := $$(filter $$(addprefix %,$$($1_CLEAN)),$$($1_ALL_SRCS)) |
|
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
512 |
# Clean these explicitly |
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
513 |
$1_ALL_CLEANS += $$($1_CLEAN_FILES) |
20363 | 514 |
# Copy and clean must also respect filters. |
515 |
ifneq (,$$($1_INCLUDES)) |
|
516 |
$1_ALL_CLEANS := $$(filter $$($1_SRC_INCLUDES),$$($1_ALL_CLEANS)) |
|
517 |
endif |
|
518 |
ifneq (,$$($1_EXCLUDES)) |
|
519 |
$1_ALL_CLEANS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_ALL_CLEANS)) |
|
520 |
endif |
|
521 |
ifneq (,$$($1_EXCLUDE_FILES)) |
|
522 |
$1_ALL_CLEANS := $$(filter-out $$($1_EXCLUDE_FILES_PATTERN),$$($1_ALL_CLEANS)) |
|
523 |
endif |
|
524 |
ifneq (,$$($1_ALL_CLEANS)) |
|
525 |
# Yep, there are files to be copied and cleaned! |
|
526 |
$1_ALL_COPY_CLEAN_TARGETS:= |
|
23162
cb2710310e93
8036611: Cleanup of handling of properties and other java resources in the build
erikj
parents:
22481
diff
changeset
|
527 |
$$(foreach i,$$($1_ALL_CLEANS),$$(eval $$(call add_file_to_clean,$1,$$i))) |
20363 | 528 |
# Now we can depend on $$($1_ALL_COPY_CLEAN_TARGETS) to copy all files! |
529 |
endif |
|
530 |
endif |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
531 |
|
20363 | 532 |
# Create a sed expression to remove the source roots and to replace / with . |
533 |
# and remove .java at the end. |
|
534 |
$1_REWRITE_INTO_CLASSES:=$$(foreach i,$$($1_SRC),-e 's|$$i/||g') -e 's|/|.|g' -e 's|.java$$$$||g' |
|
535 |
||
536 |
ifeq ($$($1_DISABLE_SJAVAC)x$$(ENABLE_SJAVAC),xyes) |
|
537 |
ifneq (,$$($1_HEADERS)) |
|
538 |
$1_HEADERS_ARG := -h $$($1_HEADERS) |
|
13697 | 539 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
540 |
|
20363 | 541 |
# Using sjavac to compile. |
26129
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
542 |
$1_COMPILE_TARGETS := $$($1_BIN)/_the.$1_batch |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
543 |
|
20363 | 544 |
# Create SJAVAC variable form JAVAC variable. Expects $1_JAVAC to be |
545 |
# "bootclasspathprepend -cp .../javac.jar com.sun.tools.javac.Main" |
|
546 |
# and javac is simply replaced with sjavac. |
|
547 |
$1_SJAVAC:=$$(subst com.sun.tools.javac.Main,com.sun.tools.sjavac.Main,$$($1_JAVAC)) |
|
548 |
||
549 |
# Set the $1_REMOTE to spawn a background javac server. |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
550 |
$1_REMOTE:=--server:portfile=$$($1_SJAVAC_PORTFILE),id=$1,sjavac=$$(subst \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
551 |
$$(SPACE),%20,$$(subst $$(COMMA),%2C,$$(strip $$($1_SERVER_JVM) $$($1_SJAVAC)))) |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
552 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
553 |
$1_VARDEPS := $$($1_JVM) $$($1_SJAVAC) $$($1_SJAVAC_ARGS) $$($1_FLAGS) \ |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
554 |
$$($1_HEADERS_ARG) $$($1_BIN) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
555 |
$1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, $$($1_BIN)/_the.$1.vardeps) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
556 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
557 |
$$($1_BIN)/_the.$1_batch: $$($1_SRCS) $$($1_DEPENDS) $$($1_VARDEPS_FILE) |
28360 | 558 |
$(MKDIR) -p $$(@D) $$(dir $$($1_SJAVAC_PORTFILE)) |
26129
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
559 |
# As a workaround for sjavac not tracking api changed from the classpath, force full |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
560 |
# recompile if an external dependency, which is something other than a source |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
561 |
# change, triggered this compilation. |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
562 |
$$(if $$(filter-out $$($1_SRCS), $$?), $(FIND) $$(@D) -name "*.class" $(FIND_DELETE)) |
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
563 |
$$(call ListPathsSafely,$1_SRCS,\n, >> $$($1_BIN)/_the.$1_batch.tmp) |
20363 | 564 |
$(ECHO) Compiling $1 |
565 |
($$($1_JVM) $$($1_SJAVAC) \ |
|
566 |
$$($1_REMOTE) \ |
|
25854 | 567 |
-j 1 \ |
20363 | 568 |
--permit-unidentified-artifacts \ |
569 |
--permit-sources-without-package \ |
|
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
570 |
--compare-found-sources $$($1_BIN)/_the.$1_batch.tmp \ |
20363 | 571 |
--log=$(LOG_LEVEL) \ |
572 |
$$($1_SJAVAC_ARGS) \ |
|
573 |
$$($1_FLAGS) \ |
|
574 |
$$($1_HEADERS_ARG) \ |
|
575 |
-d $$($1_BIN) && \ |
|
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
576 |
$(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch) |
26129
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
577 |
# Create a pubapi file that only changes when the pubapi changes. Dependent |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
578 |
# compilations can use this file to only get recompiled when pubapi has changed. |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
579 |
# Grep returns 1 if no matching lines are found. Do not fail for this. |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
580 |
$(GREP) -e "^I" $$($1_BIN)/javac_state > $$($1_BIN)/_the.$1_pubapi.tmp \ |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
581 |
|| test "$$$$?" = "1" |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
582 |
if [ ! -f $$($1_BIN)/_the.$1_pubapi ] \ |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
583 |
|| [ "`$(DIFF) $$($1_BIN)/_the.$1_pubapi $$($1_BIN)/_the.$1_pubapi.tmp`" != "" ]; then \ |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
584 |
$(MV) $$($1_BIN)/_the.$1_pubapi.tmp $$($1_BIN)/_the.$1_pubapi; \ |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
585 |
fi |
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
586 |
|
20363 | 587 |
else |
588 |
# Using plain javac to batch compile everything. |
|
25854 | 589 |
$1_COMPILE_TARGETS := $$($1_BIN)/_the.$1_batch |
14111 | 590 |
|
20363 | 591 |
# When building in batch, put headers in a temp dir to filter out those that actually |
592 |
# changed before copying them to the real header dir. |
|
593 |
ifneq (,$$($1_HEADERS)) |
|
22481
e0f8e9039971
8033210: Intermittent build failure: jdk8 fails on win_i586 in jdk/make (p11_convert.c(67) : Cannot open 'sun_security_pkcs11_wrapper_PKCS11.h)
erikj
parents:
22480
diff
changeset
|
594 |
$1_HEADERS_ARG := -h $$($1_HEADERS).$1.tmp |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
595 |
|
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
596 |
$$($1_HEADERS)/_the.$1_headers: $$($1_BIN)/_the.$1_batch |
14111 | 597 |
$(MKDIR) -p $$(@D) |
25854 | 598 |
if [ -d "$$($1_HEADERS).$1.tmp" ]; then \ |
599 |
for f in `ls $$($1_HEADERS).$1.tmp`; do \ |
|
600 |
if [ ! -f "$$($1_HEADERS)/$$$$f" ] \ |
|
601 |
|| [ "`$(DIFF) $$($1_HEADERS)/$$$$f $$($1_HEADERS).$1.tmp/$$$$f`" != "" ]; then \ |
|
22481
e0f8e9039971
8033210: Intermittent build failure: jdk8 fails on win_i586 in jdk/make (p11_convert.c(67) : Cannot open 'sun_security_pkcs11_wrapper_PKCS11.h)
erikj
parents:
22480
diff
changeset
|
602 |
$(CP) -f $$($1_HEADERS).$1.tmp/$$$$f $$($1_HEADERS)/$$$$f; \ |
14111 | 603 |
fi; \ |
25854 | 604 |
done; \ |
605 |
fi |
|
22481
e0f8e9039971
8033210: Intermittent build failure: jdk8 fails on win_i586 in jdk/make (p11_convert.c(67) : Cannot open 'sun_security_pkcs11_wrapper_PKCS11.h)
erikj
parents:
22480
diff
changeset
|
606 |
$(RM) -r $$($1_HEADERS).$1.tmp |
14111 | 607 |
$(TOUCH) $$@ |
608 |
||
25854 | 609 |
$1_HEADER_TARGETS := $$($1_HEADERS)/_the.$1_headers |
20363 | 610 |
endif |
14111 | 611 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
612 |
$1_VARDEPS := $$($1_JVM) $$($1_JAVAC) $$($1_FLAGS) $$($1_BIN) $$($1_HEADERS_ARG) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
613 |
$1_VARDEPS_FILE := $$(call DependOnVariable, $1_VARDEPS, $$($1_BIN)/_the.$1.vardeps) |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
614 |
|
20363 | 615 |
# When not using sjavac, pass along all sources to javac using an @file. |
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
616 |
$$($1_BIN)/_the.$1_batch: $$($1_SRCS) $$($1_DEPENDS) $$($1_VARDEPS_FILE) |
20363 | 617 |
$(MKDIR) -p $$(@D) |
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
618 |
$(RM) $$($1_BIN)/_the.$1_batch $$($1_BIN)/_the.$1_batch.tmp |
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
619 |
$$(call ListPathsSafely,$1_SRCS,\n, >> $$($1_BIN)/_the.$1_batch.tmp) |
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
620 |
$(ECHO) Compiling `$(WC) $$($1_BIN)/_the.$1_batch.tmp | $(TR) -s ' ' | $(CUT) -f 2 -d ' '` files for $1 |
20363 | 621 |
($$($1_JVM) $$($1_JAVAC) $$($1_FLAGS) \ |
27866
e6c790ef8899
8066761: Investigate -sourcepath usage when compiling java
erikj
parents:
27602
diff
changeset
|
622 |
-implicit:none \ |
21054
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
623 |
-d $$($1_BIN) $$($1_HEADERS_ARG) @$$($1_BIN)/_the.$1_batch.tmp && \ |
dac7de31b5b5
8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents:
20650
diff
changeset
|
624 |
$(MV) $$($1_BIN)/_the.$1_batch.tmp $$($1_BIN)/_the.$1_batch) |
14111 | 625 |
|
20363 | 626 |
endif |
627 |
||
25854 | 628 |
# Add all targets to main variable |
629 |
$1 := $$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS) $$($1_COMPILE_TARGETS) \ |
|
630 |
$$($1_HEADER_TARGETS) |
|
631 |
||
20363 | 632 |
# Check if a jar file was specified, then setup the rules for the jar. |
633 |
ifneq (,$$($1_JAR)) |
|
634 |
# If no suffixes was explicitly set for this jar file. |
|
635 |
# Use class and the cleaned/copied properties file suffixes as the default |
|
636 |
# for the types of files to be put into the jar. |
|
637 |
ifeq (,$$($1_SUFFIXES)) |
|
638 |
$1_SUFFIXES:=.class $$($1_CLEAN) $$($1_COPY) |
|
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
639 |
endif |
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
640 |
|
20363 | 641 |
$$(eval $$(call SetupArchive,ARCHIVE_$1,$$($1), \ |
642 |
SRCS:=$$($1_BIN), \ |
|
643 |
SUFFIXES:=$$($1_SUFFIXES), \ |
|
644 |
EXCLUDE:=$$($1_EXCLUDES), \ |
|
645 |
INCLUDES:=$$($1_INCLUDES), \ |
|
646 |
EXTRA_FILES:=$$($1_ALL_COPY_TARGETS) $$($1_ALL_COPY_CLEAN_TARGETS), \ |
|
647 |
JAR:=$$($1_JAR), \ |
|
648 |
JARMAIN:=$$($1_JARMAIN), \ |
|
649 |
MANIFEST:=$$($1_MANIFEST), \ |
|
650 |
EXTRA_MANIFEST_ATTR:=$$($1_EXTRA_MANIFEST_ATTR), \ |
|
651 |
JARINDEX:=$$($1_JARINDEX), \ |
|
652 |
HEADERS:=$$($1_HEADERS), \ |
|
653 |
SETUP:=$$($1_SETUP))) |
|
22480
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
654 |
|
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
655 |
# Add jar to target list |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
656 |
$1 += $$($1_JAR) |
20363 | 657 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
658 |
|
20363 | 659 |
# Check if a srczip was specified, then setup the rules for the srczip. |
660 |
ifneq (,$$($1_SRCZIP)) |
|
661 |
$$(eval $$(call SetupZipArchive,ARCHIVE_$1, \ |
|
662 |
SRC:=$$($1_SRC), \ |
|
663 |
ZIP:=$$($1_SRCZIP), \ |
|
664 |
INCLUDES:=$$($1_INCLUDES), \ |
|
665 |
EXCLUDES:=$$($1_EXCLUDES), \ |
|
666 |
EXCLUDE_FILES:=$$($1_EXCLUDE_FILES))) |
|
22480
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
667 |
|
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
668 |
# Add zip to target list |
d1be923b168a
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
22469
diff
changeset
|
669 |
$1 += $$($1_SRCZIP) |
20363 | 670 |
endif |
12258
6ec26f6cc53e
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
671 |
endef |
25854 | 672 |
|
673 |
# Use this macro to find the correct target to depend on when the original |
|
674 |
# SetupJavaCompilation is declared in a different makefile, to avoid having |
|
675 |
# to declare and evaluate it again. |
|
676 |
# param 1 is for example BUILD_MYPACKAGE |
|
677 |
# param 2 is the output directory (BIN) |
|
678 |
define SetupJavaCompilationCompileTarget |
|
26129
5ca768410aba
8055922: Work around sjavac limitation with public api tracking cross modules
erikj
parents:
25854
diff
changeset
|
679 |
$(if $(findstring yes, $(ENABLE_SJAVAC)), $(strip $2)/_the.$(strip $1)_pubapi, \ |
25854 | 680 |
$(strip $2)/_the.$(strip $1)_batch) |
681 |
endef |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
682 |
|
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28360
diff
changeset
|
683 |
endif # _JAVA_COMPILATION_GMK |