author | katleman |
Fri, 17 Apr 2015 09:59:42 -0700 | |
changeset 29935 | c8c912dc4e0e |
parent 26565 | 32d2efad175d |
child 34289 | 2d1821a50263 |
permissions | -rw-r--r-- |
1 | 1 |
# |
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
22754
diff
changeset
|
2 |
# Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved. |
1 | 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. |
|
8 |
# |
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
# accompanied this code). |
|
14 |
# |
|
15 |
# You should have received a copy of the GNU General Public License version |
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
diff
changeset
|
21 |
# questions. |
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
22754
diff
changeset
|
22 |
# |
1 | 23 |
# |
24 |
||
25 |
# top.make is included in the Makefile in the build directories. |
|
26 |
# It DOES NOT include the vm dependency info in order to be faster. |
|
3818
75004bf9026c
6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk
andrew
parents:
1552
diff
changeset
|
27 |
# Its main job is to implement the incremental form of make lists. |
1 | 28 |
# It also: |
29 |
# -builds and runs adlc via adlc.make |
|
30 |
# -generates JVMTI source and docs via jvmti.make (JSR-163) |
|
31 |
# -generate sa-jdi.jar (JDI binding to core files) |
|
32 |
||
33 |
# It assumes the following flags are set: |
|
7397 | 34 |
# CFLAGS Platform_file, Src_Dirs_I, Src_Dirs_V, SYSDEFS, AOUT, Jvm_Obj_Files |
1 | 35 |
|
36 |
# -- D. Ungar (5/97) from a file by Bill Bush |
|
37 |
||
38 |
# Don't override the built-in $(MAKE). |
|
39 |
# Instead, use "gmake" (or "gnumake") from the command line. --Rose |
|
40 |
#MAKE = gmake |
|
41 |
||
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7397
diff
changeset
|
42 |
include $(GAMMADIR)/make/altsrc.make |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7397
diff
changeset
|
43 |
|
1 | 44 |
GENERATED = ../generated |
45 |
VM = $(GAMMADIR)/src/share/vm |
|
46 |
Plat_File = $(Platform_file) |
|
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
22754
diff
changeset
|
47 |
CDG = cd $(GENERATED); |
1 | 48 |
|
7397 | 49 |
Cached_plat = $(GENERATED)/platform.current |
1 | 50 |
|
51 |
AD_Dir = $(GENERATED)/adfiles |
|
52 |
ADLC = $(AD_Dir)/adlc |
|
8114
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7397
diff
changeset
|
53 |
AD_Spec = $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad) |
340b5b8b544b
7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents:
7397
diff
changeset
|
54 |
AD_Src = $(call altsrc-replace,$(HS_COMMON_SRC)/share/vm/adlc) |
1552
45c617d33fa6
6767659: Conversion from i486 to x86 missed some entries in makefiles
kvn
parents:
1388
diff
changeset
|
55 |
AD_Names = ad_$(Platform_arch_model).hpp ad_$(Platform_arch_model).cpp |
1 | 56 |
AD_Files = $(AD_Names:%=$(AD_Dir)/%) |
57 |
||
58 |
# AD_Files_If_Required/COMPILER1 = ad_stuff |
|
59 |
AD_Files_If_Required/COMPILER2 = ad_stuff |
|
60 |
AD_Files_If_Required/TIERED = ad_stuff |
|
61 |
AD_Files_If_Required = $(AD_Files_If_Required/$(TYPE)) |
|
62 |
||
63 |
# Wierd argument adjustment for "gnumake -j..." |
|
64 |
adjust-mflags = $(GENERATED)/adjust-mflags |
|
26565
32d2efad175d
8056053: Disable HOTSPOT_BUILD_JOBS when building with configure
erikj
parents:
25639
diff
changeset
|
65 |
# If SPEC is set, it's from configure and it's already controlling concurrency |
32d2efad175d
8056053: Disable HOTSPOT_BUILD_JOBS when building with configure
erikj
parents:
25639
diff
changeset
|
66 |
# for us. Skip setting -j with HOTSPOT_BUILD_JOBS. |
32d2efad175d
8056053: Disable HOTSPOT_BUILD_JOBS when building with configure
erikj
parents:
25639
diff
changeset
|
67 |
ifeq ($(SPEC), ) |
32d2efad175d
8056053: Disable HOTSPOT_BUILD_JOBS when building with configure
erikj
parents:
25639
diff
changeset
|
68 |
MFLAGS-adjusted = -r `$(adjust-mflags) "$(MFLAGS)" "$(HOTSPOT_BUILD_JOBS)"` |
32d2efad175d
8056053: Disable HOTSPOT_BUILD_JOBS when building with configure
erikj
parents:
25639
diff
changeset
|
69 |
else |
32d2efad175d
8056053: Disable HOTSPOT_BUILD_JOBS when building with configure
erikj
parents:
25639
diff
changeset
|
70 |
MFLAGS-adjusted = -r $(MFLAGS) |
32d2efad175d
8056053: Disable HOTSPOT_BUILD_JOBS when building with configure
erikj
parents:
25639
diff
changeset
|
71 |
endif |
1 | 72 |
|
73 |
||
7397 | 74 |
# default target: update lists, make vm |
1 | 75 |
# done in stages to force sequential order with parallel make |
76 |
# |
|
77 |
||
78 |
default: vm_build_preliminaries the_vm |
|
79 |
@echo All done. |
|
80 |
||
81 |
# This is an explicit dependency for the sake of parallel makes. |
|
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
18025
diff
changeset
|
82 |
vm_build_preliminaries: checks $(Cached_plat) $(AD_Files_If_Required) jvmti_stuff trace_stuff sa_stuff dtrace_stuff |
1 | 83 |
@# We need a null action here, so implicit rules don't get consulted. |
84 |
||
7397 | 85 |
$(Cached_plat): $(Plat_File) |
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
22754
diff
changeset
|
86 |
$(CDG) $(CP) $(Plat_File) $(Cached_plat) |
1 | 87 |
|
88 |
# make AD files as necessary |
|
7397 | 89 |
ad_stuff: $(Cached_plat) $(adjust-mflags) |
1 | 90 |
@$(MAKE) -f adlc.make $(MFLAGS-adjusted) |
91 |
||
92 |
# generate JVMTI files from the spec |
|
7397 | 93 |
jvmti_stuff: $(Cached_plat) $(adjust-mflags) |
1 | 94 |
@$(MAKE) -f jvmti.make $(MFLAGS-adjusted) |
95 |
||
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
22754
diff
changeset
|
96 |
# generate trace files |
18025 | 97 |
trace_stuff: jvmti_stuff $(Cached_plat) $(adjust-mflags) |
98 |
@$(MAKE) -f trace.make $(MFLAGS-adjusted) |
|
99 |
||
1 | 100 |
# generate SA jar files and native header |
101 |
sa_stuff: |
|
102 |
@$(MAKE) -f sa.make $(MFLAGS-adjusted) |
|
103 |
||
22520
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
18025
diff
changeset
|
104 |
dtrace_stuff: $(Cached_plat) $(adjust-mflags) |
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
18025
diff
changeset
|
105 |
@$(MAKE) -f dtrace.make dtrace_gen_headers $(MFLAGS-adjusted) GENERATED=$(GENERATED) |
b9e88eed82d7
8030812: Change the solaris DTrace implementation to use USDT2 instead of USDT1
sla
parents:
18025
diff
changeset
|
106 |
|
1 | 107 |
# and the VM: must use other makefile with dependencies included |
108 |
||
109 |
# We have to go to great lengths to get control over the -jN argument |
|
110 |
# to the recursive invocation of vm.make. The problem is that gnumake |
|
111 |
# resets -jN to -j1 for recursive runs. (How helpful.) |
|
112 |
# Note that the user must specify the desired parallelism level via a |
|
113 |
# command-line or environment variable name HOTSPOT_BUILD_JOBS. |
|
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
114 |
$(adjust-mflags): $(GAMMADIR)/make/$(Platform_os_family)/makefiles/adjust-mflags.sh |
1 | 115 |
@+rm -f $@ $@+ |
116 |
@+cat $< > $@+ |
|
117 |
@+chmod +x $@+ |
|
118 |
@+mv $@+ $@ |
|
119 |
||
120 |
the_vm: vm_build_preliminaries $(adjust-mflags) |
|
121 |
@$(MAKE) -f vm.make $(MFLAGS-adjusted) |
|
122 |
||
22754 | 123 |
install: the_vm |
11784
715f58266a42
7143766: add ALT_JDK_IMAGE_DIR and improve test_jdk
twisti
parents:
8921
diff
changeset
|
124 |
@$(MAKE) -f vm.make $@ |
1 | 125 |
|
126 |
# next rules support "make foo.[oi]" |
|
127 |
||
128 |
%.o %.i %.s: |
|
129 |
$(MAKE) -f vm.make $(MFLAGS) $@ |
|
130 |
#$(MAKE) -f vm.make $@ |
|
131 |
||
132 |
# this should force everything to be rebuilt |
|
25639
61be16de0fd5
8046765: makefiles should use parameterized $(CP) and $(MV) rather than explicit commands
mduigou
parents:
22754
diff
changeset
|
133 |
clean: |
1 | 134 |
rm -f $(GENERATED)/*.class |
135 |
$(MAKE) -f vm.make $(MFLAGS) clean |
|
136 |
||
137 |
# just in case it doesn't, this should do it |
|
138 |
realclean: |
|
139 |
$(MAKE) -f vm.make $(MFLAGS) clean |
|
140 |
rm -fr $(GENERATED) |
|
141 |
||
142 |
.PHONY: default vm_build_preliminaries |
|
18025 | 143 |
.PHONY: lists ad_stuff jvmti_stuff trace_stuff sa_stuff the_vm clean realclean |
1 | 144 |
.PHONY: checks check_os_version install |
26565
32d2efad175d
8056053: Disable HOTSPOT_BUILD_JOBS when building with configure
erikj
parents:
25639
diff
changeset
|
145 |
|
32d2efad175d
8056053: Disable HOTSPOT_BUILD_JOBS when building with configure
erikj
parents:
25639
diff
changeset
|
146 |
.NOTPARALLEL: |