21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
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 |
22 # or visit www.oracle.com if you need additional information or have any |
23 # questions. |
23 # questions. |
24 # |
24 # |
25 |
25 |
26 # |
26 # Locate this Makefile |
27 # Makefile for building and packaging all of the JDK and the JRE. See |
27 ifeq ($(filter /%, $(lastword $(MAKEFILE_LIST))), ) |
28 # also included files. |
28 makefile_path := $(CURDIR)/$(lastword $(MAKEFILE_LIST)) |
29 # |
29 else |
|
30 makefile_path := $(lastword $(MAKEFILE_LIST)) |
|
31 endif |
|
32 repo_dir := $(patsubst %/make/Makefile, %, $(makefile_path)) |
30 |
33 |
31 BUILDDIR=. |
34 # What is the name of this subsystem (langtools, corba, etc)? |
|
35 subsystem_name := $(notdir $(repo_dir)) |
32 |
36 |
33 include $(BUILDDIR)/common/Defs.gmk |
37 # Try to locate top-level makefile |
34 |
38 top_level_makefile := $(repo_dir)/../Makefile |
35 # |
39 ifneq ($(wildcard $(top_level_makefile)), ) |
36 # Make sure we are clear what the default target is |
40 $(info Will run $(subsystem_name) target on top-level Makefile) |
37 # |
41 $(info WARNING: This is a non-recommended way of building!) |
38 default_target: all |
42 $(info ===================================================) |
39 |
43 else |
40 # |
44 $(info Cannot locate top-level Makefile. Is this repo not checked out as part of a complete forest?) |
41 # Check target |
45 $(error Build from top-level Makefile instead) |
42 # |
|
43 |
|
44 check: variable_check |
|
45 |
|
46 # |
|
47 # Help target |
|
48 # |
|
49 help: intro_help target_help variable_help notes_help examples_help |
|
50 |
|
51 # Intro help message |
|
52 intro_help: |
|
53 @$(ECHO) "\ |
|
54 Makefile for the main JDK workspace. \n\ |
|
55 Default behavior is to use the BOOTDIR javac to bootstrap the build and \n\ |
|
56 import in pre-built components like the VM from the JDK_IMPORT_PATH. \n\ |
|
57 " |
|
58 |
|
59 # Target help |
|
60 target_help: |
|
61 @$(ECHO) "\ |
|
62 --- Common Targets --- \n\ |
|
63 all -- build the core JDK (default target) \n\ |
|
64 help -- Print out help information \n\ |
|
65 check -- Check make variable values for correctness \n\ |
|
66 sanity -- Perform detailed sanity checks on system and settings \n\ |
|
67 openjdk -- synonym for 'OPENJDK=true all' \n\ |
|
68 fastdebug -- build the core JDK in 'fastdebug' mode (-g -O) \n\ |
|
69 debug -- build the core JDK in 'debug' mode (-g) \n\ |
|
70 clean -- remove all built and imported files \n\ |
|
71 clobber -- same as clean \n\ |
|
72 docs -- run javadoc to generate the JDK documentation \n\ |
|
73 images -- build the jdk and jre image directories \n\ |
|
74 import -- copy in the pre-built components (e.g. VM) \n\ |
|
75 import_product -- copy in the product components \n\ |
|
76 import_fastdebug -- copy in the fastdebug components \n\ |
|
77 import_debug -- copy in the debug components \n\ |
|
78 create_links -- create softlinks in Solaris 32bit build to 64bit dirs \n\ |
|
79 " |
|
80 |
|
81 # Variable help (only common ones used by this workspace) |
|
82 variable_help: variable_help_intro variable_list variable_help_end |
|
83 variable_help_intro: |
|
84 @$(ECHO) "--- Common Variables ---" |
|
85 variable_help_end: |
|
86 @$(ECHO) " " |
|
87 |
|
88 # One line descriptions for the variables |
|
89 OUTPUTDIR.desc = Output directory |
|
90 PARALLEL_COMPILE_JOBS.desc = Solaris/Linux parallel compile run count |
|
91 SLASH_JAVA.desc = Root of all build tools, e.g. /java or J: |
|
92 BOOTDIR.desc = JDK used to boot the build |
|
93 LANGTOOLS_DIST.desc = langtools dist area used to build |
|
94 CORBA_DIST.desc = corba dist area |
|
95 JAXP_DIST.desc = jaxp dist area |
|
96 JAXWS_DIST.desc = jaxws dist area |
|
97 JDK_IMPORT_PATH.desc = JDK used to import components of the build |
|
98 COMPILER_PATH.desc = Compiler install directory |
|
99 CACERTS_FILE.desc = Location of certificates file |
|
100 DEVTOOLS_PATH.desc = Directory containing zip and unzip |
|
101 CUPS_HEADERS_PATH.desc = Include directory location for CUPS header files |
|
102 |
|
103 # Make variables to print out (description and value) |
|
104 VARIABLE_PRINTVAL_LIST += \ |
|
105 OUTPUTDIR \ |
|
106 PARALLEL_COMPILE_JOBS \ |
|
107 SLASH_JAVA \ |
|
108 BOOTDIR \ |
|
109 LANGTOOLS_DIST \ |
|
110 JAXWS_DIST \ |
|
111 CORBA_DIST \ |
|
112 JAXP_DIST \ |
|
113 JDK_IMPORT_PATH \ |
|
114 COMPILER_PATH \ |
|
115 CACERTS_FILE \ |
|
116 DEVTOOLS_PATH |
|
117 |
|
118 # Make variables that should refer to directories that exist |
|
119 VARIABLE_CHECKDIR_LIST += \ |
|
120 SLASH_JAVA \ |
|
121 BOOTDIR \ |
|
122 JDK_IMPORT_PATH \ |
|
123 COMPILER_PATH \ |
|
124 DEVTOOLS_PATH |
|
125 |
|
126 # Make variables that should refer to files that exist |
|
127 VARIABLE_CHECKFIL_LIST += \ |
|
128 CACERTS_FILE |
|
129 |
|
130 # For pattern rules below, so all are treated the same |
|
131 DO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval) |
|
132 DO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir) |
|
133 DO_CHECKFIL_LIST=$(VARIABLE_CHECKFIL_LIST:%=%.checkfil) |
|
134 |
|
135 # Complete variable check |
|
136 variable_check: $(DO_CHECKDIR_LIST) $(DO_CHECKFIL_LIST) |
|
137 variable_list: $(DO_PRINTVAL_LIST) variable_check |
|
138 |
|
139 # Pattern rule for printing out a variable |
|
140 %.printval: |
|
141 @$(ECHO) " ALT_$* - $($*.desc)" |
|
142 @$(ECHO) " \t $*=$($*)" |
|
143 |
|
144 # Pattern rule for checking to see if a variable with a directory exists |
|
145 %.checkdir: |
|
146 @if [ ! -d $($*) ] ; then \ |
|
147 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
148 fi |
|
149 |
|
150 # Pattern rule for checking to see if a variable with a file exists |
|
151 %.checkfil: |
|
152 @if [ ! -f $($*) ] ; then \ |
|
153 $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \ |
|
154 fi |
|
155 |
|
156 # Misc notes on help |
|
157 notes_help: |
|
158 @$(ECHO) "\ |
|
159 --- Notes --- \n\ |
|
160 - All builds use same output directory unless overridden with \n\ |
|
161 \t ALT_OUTPUTDIR=<dir>, changing from product to fastdebug you may want \n\ |
|
162 \t to use the clean target first. \n\ |
|
163 - LANGTOOLS_DIST must refer to a langtools dist area, used to build. \n\ |
|
164 - CORBA_DIST must refer to a corba dist area. \n\ |
|
165 - JAXP_DIST must refer to a jaxp dist area. \n\ |
|
166 - JAXWS_DIST must refer to a jaxws dist area. \n\ |
|
167 - JDK_IMPORT_PATH must refer to a compatible build, not all past promoted \n\ |
|
168 \t builds or previous release JDK builds will work. \n\ |
|
169 - The 'debug' target and 'import_debug' only works when a debug promoted \n\ |
|
170 \t build is available, and they currently are not. \n\ |
|
171 - The fastest builds have been when the workspace and the BOOTDIR are on \n\ |
|
172 \t local disk. \n\ |
|
173 " |
|
174 |
|
175 examples_help: |
|
176 @$(ECHO) "\ |
|
177 --- Examples --- \n\ |
|
178 $(MAKE) fastdebug \n\ |
|
179 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\ |
|
180 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar fastdebug images \n\ |
|
181 $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all docs images \n\ |
|
182 $(MAKE) ALT_BOOTDIR=/opt/java/jdk1.6.0 \n\ |
|
183 $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk1.7.0 \n\ |
|
184 " |
|
185 |
|
186 # |
|
187 # 'all' target intro |
|
188 # |
|
189 all:: |
|
190 @$(ECHO) $(PLATFORM) $(ARCH) $(RELEASE) build started: $(shell $(DATE) '+%y-%m-%d %H:%M') |
|
191 |
|
192 # Just in case anyone uses this old name, same as 'build' |
|
193 optimized: build |
|
194 |
|
195 openjdk: |
|
196 $(MAKE) OPENJDK=true all |
|
197 |
|
198 # |
|
199 # Special debug rules (You may also want to set ALT_OUTPUTDIR) |
|
200 # |
|
201 debug: |
|
202 $(MAKE) VARIANT=DBG all |
|
203 fastdebug: |
|
204 $(MAKE) VARIANT=DBG FASTDEBUG=true all |
|
205 |
|
206 # |
|
207 # Rules to re-import VM and other JDK files |
|
208 # |
|
209 import: |
|
210 $(CD) java/redist; $(MAKE) clean all |
|
211 |
|
212 import_fastdebug: |
|
213 $(MAKE) VARIANT=DBG FASTDEBUG=true import |
|
214 |
|
215 import_product: |
|
216 $(MAKE) VARIANT=OPT FASTDEBUG=false import |
|
217 |
|
218 # |
|
219 # Core. |
|
220 # |
|
221 |
|
222 all build:: sanity-all post-sanity-all |
|
223 |
|
224 SUBDIRS = tools java javax sun com jdk |
|
225 ifeq ($(PLATFORM), macosx) |
|
226 SUBDIRS += apple |
|
227 endif |
|
228 ifeq ($(PLATFORM), windows) |
|
229 SUBDIRS += bridge |
|
230 endif |
|
231 SUBDIRS_tools = launchers |
|
232 SUBDIRS_misc = org jpda |
|
233 |
|
234 # demos |
|
235 ifndef NO_DEMOS |
|
236 SUBDIRS_misc += mkdemo |
|
237 endif |
46 endif |
238 |
47 |
239 # samples |
48 all: |
240 ifndef NO_SAMPLES |
49 @$(MAKE) -f $(top_level_makefile) $(subsystem_name) |
241 SUBDIRS_misc += mksample |
|
242 endif |
|
243 |
|
244 # Alternate classes implementation |
|
245 ifndef OPENJDK |
|
246 SUBDIRS_misc += altclasses |
|
247 endif |
|
248 |
|
249 include $(BUILDDIR)/common/Subdirs.gmk |
|
250 |
|
251 all build:: |
|
252 $(SUBDIRS-loop) |
|
253 |
|
254 clean clobber:: |
|
255 $(RM) -r $(OUTPUTDIR) |
|
256 |
|
257 # |
|
258 # Docs |
|
259 # |
|
260 OTHERSUBDIRS = docs |
|
261 docs:: sanity-docs post-sanity-docs |
|
262 $(OTHERSUBDIRS-loop) |
|
263 |
|
264 # |
|
265 # Release engineering targets. |
|
266 # |
|
267 include $(BUILDDIR)/common/Release.gmk |
|
268 -include $(CUSTOM_MAKE_DIR)/Release.gmk |
|
269 |
|
270 # |
|
271 # Cscope targets. |
|
272 # |
|
273 include $(BUILDDIR)/common/Cscope.gmk |
|
274 |
|
275 # |
|
276 # Sanity checks. |
|
277 # |
|
278 include $(BUILDDIR)/common/Sanity.gmk |
|
279 |
|
280 $(OUTPUTDIR) $(TEMPDIR): |
|
281 $(MKDIR) -p $@ |
|
282 |
|
283 # this should be the last rule in this file: |
|
284 all:: |
|
285 @if [ -r $(WARNING_FILE) ]; then \ |
|
286 $(CAT) $(WARNING_FILE) ; \ |
|
287 fi |
|
288 @$(ECHO) $(PLATFORM) $(ARCH) $(RELEASE) build finished: $(shell $(DATE) '+%y-%m-%d %H:%M') |
|
289 |
|
290 # |
|
291 # Developer rule that links 32 and 64 bit builds on Solaris by creating |
|
292 # softlinks in the 32bit outputdir to the 64bit outputdir. |
|
293 # |
|
294 ifeq ($(PLATFORM), solaris) |
|
295 ifeq ($(ARCH_FAMILY), sparc) |
|
296 ARCH32 = sparc |
|
297 ARCH64 = sparcv9 |
|
298 else |
|
299 ARCH32 = i586 |
|
300 ARCH64 = amd64 |
|
301 endif |
|
302 OUTPUTDIR32 = $(ABS_OUTPUTDIR)/../$(PLATFORM)-$(ARCH32) |
|
303 OUTPUTDIR64 = $(ABS_OUTPUTDIR)/../$(PLATFORM)-$(ARCH64) |
|
304 endif |
|
305 |
|
306 create_links: |
|
307 ifeq ($(PLATFORM), solaris) |
|
308 @if [ -d $(OUTPUTDIR32) -a -d $(OUTPUTDIR64) ] ; then \ |
|
309 dirlist=`($(CD) $(OUTPUTDIR64); $(FIND) . -name $(ARCH64))`; \ |
|
310 for sd in $$dirlist ; do \ |
|
311 pdir=`$(DIRNAME) $$sd`; \ |
|
312 if [ -d $(OUTPUTDIR32)/$$pdir ] ; then \ |
|
313 echo "Creating link for $$sd"; \ |
|
314 (cd $(OUTPUTDIR32)/$$pdir; $(RM) $(ARCH64); \ |
|
315 $(LN) -s $(OUTPUTDIR64)/$$sd ); \ |
|
316 fi; \ |
|
317 done; \ |
|
318 else \ |
|
319 $(ECHO) "Build both 32 and 64 bit versions first"; \ |
|
320 fi |
|
321 else |
|
322 $(ECHO) "Rule $@ does not apply on $(PLATFORM)-$(ARCH)" |
|
323 endif |
|
324 |
|
325 # |
|
326 # Test rule |
|
327 # |
|
328 |
|
329 .NOTPARALLEL: test_run |
|
330 |
|
331 test: |
|
332 $(MAKE) test_run |
|
333 |
|
334 test_run: test_clean test_start test_summary |
|
335 |
|
336 test_start: |
|
337 @$(ECHO) "Tests started at `$(DATE)`" |
|
338 |
|
339 test_clean: |
|
340 $(RM) $(OUTPUTDIR)/test_failures.txt $(OUTPUTDIR)/test_log.txt |
|
341 |
|
342 test_summary: $(OUTPUTDIR)/test_failures.txt |
|
343 @$(ECHO) "#################################################" |
|
344 @$(ECHO) "Tests completed at `$(DATE)`" |
|
345 @( $(EGREP) '^TEST STATS:' $(OUTPUTDIR)/test_log.txt \ |
|
346 || $(ECHO) "No TEST STATS seen in log" ) |
|
347 @$(ECHO) "For complete details see: $(OUTPUTDIR)/test_log.txt" |
|
348 @$(ECHO) "#################################################" |
|
349 @if [ -s $< ] ; then \ |
|
350 $(ECHO) "ERROR: Test failure count: `$(CAT) $< | $(WC) -l`"; \ |
|
351 $(CAT) $<; \ |
|
352 exit 1; \ |
|
353 else \ |
|
354 $(ECHO) "Success! No failures detected"; \ |
|
355 fi |
|
356 |
|
357 # Get failure list from log |
|
358 $(OUTPUTDIR)/test_failures.txt: $(OUTPUTDIR)/test_log.txt |
|
359 @$(RM) $@ |
|
360 @( $(EGREP) '^FAILED:' $< || $(ECHO) "" ) | $(NAWK) 'length>0' > $@ |
|
361 |
|
362 # Get log file of all tests run |
|
363 JDK_TO_TEST := $(shell \ |
|
364 if [ -d "$(ABS_OUTPUTDIR)/j2sdk-image" ] ; then \ |
|
365 $(ECHO) "$(ABS_OUTPUTDIR)/j2sdk-image"; \ |
|
366 elif [ -d "$(ABS_OUTPUTDIR)/bin" ] ; then \ |
|
367 $(ECHO) "$(ABS_OUTPUTDIR)"; \ |
|
368 elif [ "$(PRODUCT_HOME)" != "" -a -d "$(PRODUCT_HOME)/bin" ] ; then \ |
|
369 $(ECHO) "$(PRODUCT_HOME)"; \ |
|
370 fi \ |
|
371 ) |
|
372 |
|
373 TEST_TARGETS=jdk_all |
|
374 $(OUTPUTDIR)/test_log.txt: |
|
375 $(RM) $@ |
|
376 ( $(CD) ../test && \ |
|
377 $(MAKE) NO_STOPPING=- PRODUCT_HOME=$(JDK_TO_TEST) $(TEST_TARGETS) \ |
|
378 ) | tee $@ |
|
379 |
|
380 # |
|
381 # JPRT rules |
|
382 # |
|
383 |
|
384 include jprt.gmk |
|
385 |
|
386 # |
|
387 # Phonies to avoid accidents. |
|
388 # |
|
389 .PHONY: all build clean clobber optimized debug fastdebug create_links \ |
|
390 import import_product import_fastdebug import_debug \ |
|
391 test test_run test_start test_clean test_summary |
|