author | amurillo |
Fri, 30 Nov 2012 16:45:27 -0800 | |
changeset 14592 | af8f87762e23 |
parent 14466 | 2f85b948660b |
child 15053 | 64278cb83950 |
permissions | -rw-r--r-- |
14111 | 1 |
# |
2 |
# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved. |
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
26 |
### This is the main part of the Makefile, for the normal case with SPEC specifying a single existing spec.gmk file. |
|
27 |
||
28 |
# Now load the spec |
|
29 |
include $(SPEC) |
|
30 |
||
31 |
# Load the vital tools for all the makefiles. |
|
32 |
include $(SRC_ROOT)/common/makefiles/MakeBase.gmk |
|
33 |
||
34 |
# Include the corresponding custom file, if present. |
|
35 |
-include $(CUSTOM_MAKE_DIR)/Main.gmk |
|
36 |
||
37 |
### Clean up from previous run |
|
38 |
||
39 |
# Remove any build.log from a previous run, if they exist |
|
40 |
ifneq (,$(BUILD_LOG)) |
|
41 |
ifneq (,$(BUILD_LOG_PREVIOUS)) |
|
42 |
# Rotate old log |
|
43 |
$(shell $(RM) $(BUILD_LOG_PREVIOUS) 2> /dev/null) |
|
44 |
$(shell $(MV) $(BUILD_LOG) $(BUILD_LOG_PREVIOUS) 2> /dev/null) |
|
45 |
else |
|
46 |
$(shell $(RM) $(BUILD_LOG) 2> /dev/null) |
|
47 |
endif |
|
48 |
$(shell $(RM) $(OUTPUT_ROOT)/build-trace-time.log 2> /dev/null) |
|
49 |
endif |
|
50 |
# Remove any javac server logs and port files. This |
|
51 |
# prevents a new make run to reuse the previous servers. |
|
52 |
ifneq (,$(SJAVAC_SERVER_DIR)) |
|
53 |
$(shell $(MKDIR) -p $(SJAVAC_SERVER_DIR) && $(RM) -rf $(SJAVAC_SERVER_DIR)/*) |
|
54 |
endif |
|
55 |
||
56 |
# Reset the build timers. |
|
57 |
$(eval $(call ResetAllTimers)) |
|
58 |
||
59 |
# Setup number of jobs to use. -jN is unfortunately not available for us to parse from the command line, |
|
60 |
# hence this workaround. |
|
61 |
ifeq ($(JOBS),) |
|
62 |
JOBS=$(NUM_CORES) |
|
63 |
endif |
|
64 |
MAKE_ARGS:=$(MAKE_ARGS) -j$(JOBS) |
|
65 |
||
66 |
### Main targets |
|
67 |
||
68 |
all: jdk |
|
69 |
||
70 |
start-make: |
|
71 |
@$(call AtMakeStart) |
|
72 |
||
73 |
langtools: langtools-only |
|
74 |
langtools-only: start-make |
|
75 |
@$(call TargetEnter) |
|
76 |
@($(CD) $(LANGTOOLS_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildLangtools.gmk) |
|
77 |
@$(call TargetExit) |
|
78 |
||
79 |
corba: langtools corba-only |
|
80 |
corba-only: start-make |
|
81 |
@$(call TargetEnter) |
|
82 |
@($(CD) $(CORBA_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildCorba.gmk) |
|
83 |
@$(call TargetExit) |
|
84 |
||
85 |
jaxp: langtools jaxp-only |
|
86 |
jaxp-only: start-make |
|
87 |
@$(call TargetEnter) |
|
88 |
@($(CD) $(JAXP_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildJaxp.gmk) |
|
89 |
@$(call TargetExit) |
|
90 |
||
91 |
jaxws: langtools jaxp jaxws-only |
|
92 |
jaxws-only: start-make |
|
93 |
@$(call TargetEnter) |
|
94 |
@($(CD) $(JAXWS_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildJaxws.gmk) |
|
95 |
@$(call TargetExit) |
|
96 |
||
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14111
diff
changeset
|
97 |
ifeq ($(BUILD_HOTSPOT),true) |
14111 | 98 |
hotspot: hotspot-only |
99 |
hotspot-only: start-make |
|
100 |
@$(call TargetEnter) |
|
101 |
@($(CD) $(SRC_ROOT)/common/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f HotspotWrapper.gmk) |
|
102 |
@$(call TargetExit) |
|
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14111
diff
changeset
|
103 |
endif |
14111 | 104 |
|
105 |
jdk: langtools hotspot corba jaxp jaxws jdk-only |
|
106 |
jdk-only: start-make |
|
107 |
@$(call TargetEnter) |
|
108 |
@($(CD) $(JDK_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildJdk.gmk $(JDK_TARGET)) |
|
109 |
@$(call TargetExit) |
|
110 |
||
111 |
demos: jdk demos-only |
|
112 |
demos-only: start-make |
|
113 |
@$(call TargetEnter) |
|
114 |
@($(CD) $(JDK_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildJdk.gmk demos) |
|
115 |
@$(call TargetExit) |
|
116 |
||
117 |
images: source-tips demos images-only |
|
118 |
images-only: start-make |
|
119 |
@$(call TargetEnter) |
|
120 |
@($(CD) $(JDK_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildJdk.gmk images) |
|
121 |
@$(call TargetExit) |
|
122 |
||
123 |
overlay-images: source-tips demos overlay-images-only |
|
124 |
overlay-images-only: start-make |
|
125 |
@$(call TargetEnter) |
|
126 |
@($(CD) $(JDK_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildJdk.gmk overlay-images) |
|
127 |
@$(call TargetExit) |
|
128 |
||
129 |
bundles: images bundles-only |
|
130 |
bundles-only: start-make |
|
131 |
@$(call TargetEnter) |
|
132 |
@($(CD) $(JDK_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildJdk.gmk bundles) |
|
133 |
@$(call TargetExit) |
|
134 |
||
135 |
install: images install-only |
|
136 |
install-only: start-make |
|
137 |
@$(call TargetEnter) |
|
138 |
@($(CD) $(JDK_TOPDIR)/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f BuildJdk.gmk install) |
|
139 |
@$(call TargetExit) |
|
140 |
||
141 |
docs: jdk docs-only |
|
142 |
docs-only: start-make |
|
143 |
@$(call TargetEnter) |
|
144 |
@($(CD) $(SRC_ROOT)/common/makefiles/javadoc && $(BUILD_LOG_WRAPPER) $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs) |
|
145 |
@$(call TargetExit) |
|
146 |
||
147 |
bootcycle-images: |
|
148 |
@$(ECHO) Boot cycle build step 1: Building the JDK image normally |
|
149 |
@($(CD) $(SRC_ROOT)/common/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) SPEC=$(SPEC) images) |
|
150 |
@$(ECHO) Boot cycle build step 2: Building a new JDK image using previously built image |
|
151 |
@($(CD) $(SRC_ROOT)/common/makefiles && $(BUILD_LOG_WRAPPER) $(MAKE) SPEC=$(dir $(SPEC))bootcycle-spec.gmk images) |
|
152 |
||
153 |
test: start-make |
|
154 |
@$(call TargetEnter) |
|
155 |
@($(CD) $(SRC_ROOT)/test && $(BUILD_LOG_WRAPPER) $(MAKE) MAKEFLAGS= -j1 PRODUCT_HOME=$(OUTPUT_ROOT)/jdk JPRT_JAVA_HOME=$(OUTPUT_ROOT)/jdk ALT_OUTPUTDIR=$(OUTPUT_ROOT) $(TEST)) || true |
|
156 |
@$(call TargetExit) |
|
157 |
||
158 |
# Stores the tips for each repository. This file is be used when constructing the jdk image and can be |
|
159 |
# used to track the exact sources used to build that image. |
|
160 |
source-tips: $(OUTPUT_ROOT)/source_tips |
|
161 |
$(OUTPUT_ROOT)/source_tips: FRC |
|
162 |
@$(MKDIR) -p $(@D) |
|
163 |
@$(RM) $@ |
|
164 |
@$(if $(HG),$(call GetSourceTips),$(ECHO) "hg not installed" > $@) |
|
165 |
||
166 |
||
167 |
# Remove everything, except the output from configure. |
|
14466
2f85b948660b
8003844: build-infra: docs target isn't working properly
erikj
parents:
14378
diff
changeset
|
168 |
clean: clean-langtools clean-corba clean-jaxp clean-jaxws clean-hotspot clean-jdk clean-images clean-overlay-images clean-bootcycle-build clean-docs |
14111 | 169 |
@($(CD) $(OUTPUT_ROOT) && $(RM) -r tmp source_tips build.log* build-trace*.log*) |
170 |
@$(ECHO) Cleaned all build artifacts. |
|
171 |
||
172 |
# Remove everything, including configure configuration. |
|
173 |
# If the output directory was created by configure and now becomes empty, remove it as well. |
|
174 |
# FIXME: tmp should not be here, fix ResetTimers instead. And remove spec.sh! |
|
175 |
dist-clean: clean |
|
176 |
@($(CD) $(OUTPUT_ROOT) && $(RM) -r *spec.gmk config.* configure-arguments Makefile compare.sh spec.sh tmp) |
|
177 |
@$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \ |
|
178 |
if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \ |
|
179 |
$(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ;\ |
|
180 |
else \ |
|
181 |
($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" && $(RM) -r $(OUTPUT_ROOT)) \ |
|
182 |
fi \ |
|
183 |
) |
|
184 |
@$(ECHO) Cleaned everything, you will have to re-run configure. |
|
185 |
||
186 |
clean-langtools: |
|
187 |
$(call CleanComponent,langtools) |
|
188 |
clean-corba: |
|
189 |
$(call CleanComponent,corba) |
|
190 |
clean-jaxp: |
|
191 |
$(call CleanComponent,jaxp) |
|
192 |
clean-jaxws: |
|
193 |
$(call CleanComponent,jaxws) |
|
194 |
clean-hotspot: |
|
195 |
$(call CleanComponent,hotspot) |
|
196 |
clean-jdk: |
|
197 |
$(call CleanComponent,jdk) |
|
198 |
clean-images: |
|
199 |
$(call CleanComponent,images) |
|
200 |
clean-overlay-images: |
|
201 |
$(call CleanComponent,overlay-images) |
|
202 |
clean-bootcycle-build: |
|
203 |
$(call CleanComponent,bootcycle-build) |
|
14466
2f85b948660b
8003844: build-infra: docs target isn't working properly
erikj
parents:
14378
diff
changeset
|
204 |
clean-docs: |
2f85b948660b
8003844: build-infra: docs target isn't working properly
erikj
parents:
14378
diff
changeset
|
205 |
$(call CleanComponent,docs) |
2f85b948660b
8003844: build-infra: docs target isn't working properly
erikj
parents:
14378
diff
changeset
|
206 |
$(call CleanComponent,docstemp) |
14111 | 207 |
|
208 |
.PHONY: langtools corba jaxp jaxws hotspot jdk images overlay-images install |
|
209 |
.PHONY: langtools-only corba-only jaxp-only jaxws-only hotspot-only jdk-only images-only overlay-images-only install-only |
|
210 |
.PHONY: all test clean dist-clean bootcycle-images start-make |
|
211 |
.PHONY: clean-langtools clean-corba clean-jaxp clean-jaxws clean-hotspot clean-jdk clean-images clean-overlay-images clean-bootcycle-build |
|
212 |
||
213 |
FRC: # Force target |