hotspot/make/linux/makefiles/top.make
author trims
Tue, 05 Apr 2011 14:12:31 -0700
changeset 8921 14bfe81f2a9d
parent 8114 340b5b8b544b
child 11205 f07e6dd70a1f
permissions -rw-r--r--
7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass Summary: Update the copyright to be 2010 on all changed files in OpenJDK Reviewed-by: ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
8921
14bfe81f2a9d 7010070: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - second pass
trims
parents: 8114
diff changeset
     2
# Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
#
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
diff changeset
    19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4013
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: 4013
diff changeset
    21
# questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
#  
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# top.make is included in the Makefile in the build directories.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
# It also:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#   -builds and runs adlc via adlc.make
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#   -generates JVMTI source and docs via jvmti.make (JSR-163)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#   -generate sa-jdi.jar (JDI binding to core files)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
# It assumes the following flags are set:
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    34
# CFLAGS Platform_file, Src_Dirs_I, Src_Dirs_V, SYSDEFS, AOUT, Obj_Files
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
# -- D. Ungar (5/97) from a file by Bill Bush
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
# Don't override the built-in $(MAKE).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
# Instead, use "gmake" (or "gnumake") from the command line.  --Rose
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#MAKE = gmake
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 8107
diff changeset
    42
include $(GAMMADIR)/make/altsrc.make
8107
78e5bd944384 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents: 7397
diff changeset
    43
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
TOPDIR      = $(shell echo `pwd`)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
GENERATED   = $(TOPDIR)/../generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
VM          = $(GAMMADIR)/src/share/vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
Plat_File   = $(Platform_file)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
CDG         = cd $(GENERATED); 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
ifdef USE_PRECOMPILED_HEADER
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
PrecompiledOption = -DUSE_PRECOMPILED_HEADER
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
UpdatePCH         = $(MAKE) -f vm.make $(PRECOMPILED_HEADER) $(MFLAGS) 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
UpdatePCH         = \# precompiled header is not used
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
PrecompiledOption = 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
Cached_plat = $(GENERATED)/platform.current
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
AD_Dir   = $(GENERATED)/adfiles
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
ADLC     = $(AD_Dir)/adlc
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 8107
diff changeset
    62
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: 8107
diff changeset
    63
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
    64
AD_Names = ad_$(Platform_arch_model).hpp ad_$(Platform_arch_model).cpp
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
AD_Files = $(AD_Names:%=$(AD_Dir)/%)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
# AD_Files_If_Required/COMPILER1 = ad_stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
AD_Files_If_Required/COMPILER2 = ad_stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
AD_Files_If_Required/TIERED = ad_stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
AD_Files_If_Required = $(AD_Files_If_Required/$(TYPE))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
# Wierd argument adjustment for "gnumake -j..."
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
adjust-mflags   = $(GENERATED)/adjust-mflags
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
MFLAGS-adjusted = -r `$(adjust-mflags) "$(MFLAGS)" "$(HOTSPOT_BUILD_JOBS)"`
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    77
# default target: update lists, make vm
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
# done in stages to force sequential order with parallel make
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
default: vm_build_preliminaries the_vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
	@echo All done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
# This is an explicit dependency for the sake of parallel makes.
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    85
vm_build_preliminaries:  checks $(Cached_plat) $(AD_Files_If_Required) jvmti_stuff sa_stuff
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
	@# We need a null action here, so implicit rules don't get consulted.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    88
$(Cached_plat): $(Plat_File)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
	$(CDG) cp $(Plat_File) $(Cached_plat)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
# make AD files as necessary
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    92
ad_stuff: $(Cached_plat) $(adjust-mflags)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
	@$(MAKE) -f adlc.make $(MFLAGS-adjusted)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
# generate JVMTI files from the spec
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
    96
jvmti_stuff: $(Cached_plat) $(adjust-mflags)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
	@$(MAKE) -f jvmti.make $(MFLAGS-adjusted)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
# generate SA jar files and native header
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
sa_stuff:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
	@$(MAKE) -f sa.make $(MFLAGS-adjusted)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
# and the VM: must use other makefile with dependencies included
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
# We have to go to great lengths to get control over the -jN argument
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
# to the recursive invocation of vm.make.  The problem is that gnumake
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
# resets -jN to -j1 for recursive runs.  (How helpful.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
# Note that the user must specify the desired parallelism level via a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
# 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
   110
$(adjust-mflags): $(GAMMADIR)/make/$(Platform_os_family)/makefiles/adjust-mflags.sh
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
	@+rm -f $@ $@+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
	@+cat $< > $@+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
	@+chmod +x $@+
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
	@+mv $@+ $@
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
the_vm: vm_build_preliminaries $(adjust-mflags)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
	@$(UpdatePCH)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
	@$(MAKE) -f vm.make $(MFLAGS-adjusted)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
install: the_vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
	@$(MAKE) -f vm.make install
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6187
diff changeset
   123
# next rules support "make foo.[ois]"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
%.o %.i %.s:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
	$(UpdatePCH) 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
	$(MAKE) -f vm.make $(MFLAGS) $@
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
	#$(MAKE) -f vm.make $@
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
# this should force everything to be rebuilt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
clean: 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
	rm -f $(GENERATED)/*.class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
	$(MAKE) -f vm.make $(MFLAGS) clean
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
# just in case it doesn't, this should do it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
realclean:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
	$(MAKE) -f vm.make $(MFLAGS) clean
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
	rm -fr $(GENERATED)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
.PHONY: default vm_build_preliminaries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
.PHONY: lists ad_stuff jvmti_stuff sa_stuff the_vm clean realclean
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
.PHONY: checks check_os_version install