make/linux/makefiles/top.make

Tue, 05 Apr 2011 14:12:31 -0700

author
trims
date
Tue, 05 Apr 2011 14:12:31 -0700
changeset 2708
1d1603768966
parent 2515
d8a72fbc4be7
child 3325
f4414323345f
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

duke@435 1 #
trims@2708 2 # Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
trims@1907 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 # or visit www.oracle.com if you need additional information or have any
trims@1907 21 # questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # top.make is included in the Makefile in the build directories.
duke@435 26 # It DOES NOT include the vm dependency info in order to be faster.
andrew@1406 27 # Its main job is to implement the incremental form of make lists.
duke@435 28 # It also:
duke@435 29 # -builds and runs adlc via adlc.make
duke@435 30 # -generates JVMTI source and docs via jvmti.make (JSR-163)
duke@435 31 # -generate sa-jdi.jar (JDI binding to core files)
duke@435 32
duke@435 33 # It assumes the following flags are set:
stefank@2314 34 # CFLAGS Platform_file, Src_Dirs_I, Src_Dirs_V, SYSDEFS, AOUT, Obj_Files
duke@435 35
duke@435 36 # -- D. Ungar (5/97) from a file by Bill Bush
duke@435 37
duke@435 38 # Don't override the built-in $(MAKE).
duke@435 39 # Instead, use "gmake" (or "gnumake") from the command line. --Rose
duke@435 40 #MAKE = gmake
duke@435 41
kamg@2515 42 include $(GAMMADIR)/make/altsrc.make
bobv@2508 43
duke@435 44 TOPDIR = $(shell echo `pwd`)
duke@435 45 GENERATED = $(TOPDIR)/../generated
duke@435 46 VM = $(GAMMADIR)/src/share/vm
duke@435 47 Plat_File = $(Platform_file)
duke@435 48 CDG = cd $(GENERATED);
duke@435 49
duke@435 50 ifdef USE_PRECOMPILED_HEADER
duke@435 51 PrecompiledOption = -DUSE_PRECOMPILED_HEADER
duke@435 52 UpdatePCH = $(MAKE) -f vm.make $(PRECOMPILED_HEADER) $(MFLAGS)
duke@435 53 else
duke@435 54 UpdatePCH = \# precompiled header is not used
duke@435 55 PrecompiledOption =
duke@435 56 endif
duke@435 57
duke@435 58 Cached_plat = $(GENERATED)/platform.current
duke@435 59
duke@435 60 AD_Dir = $(GENERATED)/adfiles
duke@435 61 ADLC = $(AD_Dir)/adlc
kamg@2515 62 AD_Spec = $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad)
kamg@2515 63 AD_Src = $(call altsrc-replace,$(HS_COMMON_SRC)/share/vm/adlc)
kvn@868 64 AD_Names = ad_$(Platform_arch_model).hpp ad_$(Platform_arch_model).cpp
duke@435 65 AD_Files = $(AD_Names:%=$(AD_Dir)/%)
duke@435 66
duke@435 67 # AD_Files_If_Required/COMPILER1 = ad_stuff
duke@435 68 AD_Files_If_Required/COMPILER2 = ad_stuff
duke@435 69 AD_Files_If_Required/TIERED = ad_stuff
duke@435 70 AD_Files_If_Required = $(AD_Files_If_Required/$(TYPE))
duke@435 71
duke@435 72 # Wierd argument adjustment for "gnumake -j..."
duke@435 73 adjust-mflags = $(GENERATED)/adjust-mflags
duke@435 74 MFLAGS-adjusted = -r `$(adjust-mflags) "$(MFLAGS)" "$(HOTSPOT_BUILD_JOBS)"`
duke@435 75
duke@435 76
stefank@2314 77 # default target: update lists, make vm
duke@435 78 # done in stages to force sequential order with parallel make
duke@435 79 #
duke@435 80
duke@435 81 default: vm_build_preliminaries the_vm
duke@435 82 @echo All done.
duke@435 83
duke@435 84 # This is an explicit dependency for the sake of parallel makes.
stefank@2314 85 vm_build_preliminaries: checks $(Cached_plat) $(AD_Files_If_Required) jvmti_stuff sa_stuff
duke@435 86 @# We need a null action here, so implicit rules don't get consulted.
duke@435 87
stefank@2314 88 $(Cached_plat): $(Plat_File)
duke@435 89 $(CDG) cp $(Plat_File) $(Cached_plat)
duke@435 90
duke@435 91 # make AD files as necessary
stefank@2314 92 ad_stuff: $(Cached_plat) $(adjust-mflags)
duke@435 93 @$(MAKE) -f adlc.make $(MFLAGS-adjusted)
duke@435 94
duke@435 95 # generate JVMTI files from the spec
stefank@2314 96 jvmti_stuff: $(Cached_plat) $(adjust-mflags)
duke@435 97 @$(MAKE) -f jvmti.make $(MFLAGS-adjusted)
duke@435 98
duke@435 99 # generate SA jar files and native header
duke@435 100 sa_stuff:
duke@435 101 @$(MAKE) -f sa.make $(MFLAGS-adjusted)
duke@435 102
duke@435 103 # and the VM: must use other makefile with dependencies included
duke@435 104
duke@435 105 # We have to go to great lengths to get control over the -jN argument
duke@435 106 # to the recursive invocation of vm.make. The problem is that gnumake
duke@435 107 # resets -jN to -j1 for recursive runs. (How helpful.)
duke@435 108 # Note that the user must specify the desired parallelism level via a
duke@435 109 # command-line or environment variable name HOTSPOT_BUILD_JOBS.
kamg@526 110 $(adjust-mflags): $(GAMMADIR)/make/$(Platform_os_family)/makefiles/adjust-mflags.sh
duke@435 111 @+rm -f $@ $@+
duke@435 112 @+cat $< > $@+
duke@435 113 @+chmod +x $@+
duke@435 114 @+mv $@+ $@
duke@435 115
duke@435 116 the_vm: vm_build_preliminaries $(adjust-mflags)
duke@435 117 @$(UpdatePCH)
duke@435 118 @$(MAKE) -f vm.make $(MFLAGS-adjusted)
duke@435 119
duke@435 120 install: the_vm
duke@435 121 @$(MAKE) -f vm.make install
duke@435 122
stefank@2314 123 # next rules support "make foo.[ois]"
duke@435 124
duke@435 125 %.o %.i %.s:
duke@435 126 $(UpdatePCH)
duke@435 127 $(MAKE) -f vm.make $(MFLAGS) $@
duke@435 128 #$(MAKE) -f vm.make $@
duke@435 129
duke@435 130 # this should force everything to be rebuilt
duke@435 131 clean:
duke@435 132 rm -f $(GENERATED)/*.class
duke@435 133 $(MAKE) -f vm.make $(MFLAGS) clean
duke@435 134
duke@435 135 # just in case it doesn't, this should do it
duke@435 136 realclean:
duke@435 137 $(MAKE) -f vm.make $(MFLAGS) clean
duke@435 138 rm -fr $(GENERATED)
duke@435 139
duke@435 140 .PHONY: default vm_build_preliminaries
duke@435 141 .PHONY: lists ad_stuff jvmti_stuff sa_stuff the_vm clean realclean
duke@435 142 .PHONY: checks check_os_version install

mercurial