1 #
   2 # Copyright (c) 1999, 2014, 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.
   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 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  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.
  27 # Its main job is to implement the incremental form of make lists.
  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:
  34 # CFLAGS Platform_file, Src_Dirs_I, Src_Dirs_V, SYSDEFS, AOUT, Obj_Files
  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 
  42 include $(GAMMADIR)/make/altsrc.make
  43 
  44 TOPDIR      = $(shell echo `pwd`)
  45 GENERATED   = $(TOPDIR)/../generated
  46 VM          = $(GAMMADIR)/src/share/vm
  47 Plat_File   = $(Platform_file)
  48 CDG         = cd $(GENERATED);
  49 
  50 ifneq ($(USE_PRECOMPILED_HEADER),0)
  51 UpdatePCH = $(MAKE) -f vm.make $(PRECOMPILED_HEADER) $(MFLAGS)
  52 else
  53 UpdatePCH = \# precompiled header is not used
  54 endif
  55 
  56 Cached_plat = $(GENERATED)/platform.current
  57 
  58 AD_Dir   = $(GENERATED)/adfiles
  59 ADLC     = $(AD_Dir)/adlc
  60 AD_Spec  = $(call altsrc-replace,$(HS_COMMON_SRC)/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad)
  61 AD_Src   = $(call altsrc-replace,$(HS_COMMON_SRC)/share/vm/adlc)
  62 AD_Names = ad_$(Platform_arch_model).hpp ad_$(Platform_arch_model).cpp
  63 AD_Files = $(AD_Names:%=$(AD_Dir)/%)
  64 
  65 # AD_Files_If_Required/COMPILER1 = ad_stuff
  66 AD_Files_If_Required/COMPILER2 = ad_stuff
  67 AD_Files_If_Required/TIERED = ad_stuff
  68 AD_Files_If_Required = $(AD_Files_If_Required/$(TYPE))
  69 
  70 # Wierd argument adjustment for "gnumake -j..."
  71 adjust-mflags   = $(GENERATED)/adjust-mflags
  72 # If SPEC is set, it's from configure and it's already controlling concurrency
  73 # for us. Skip setting -j with HOTSPOT_BUILD_JOBS.
  74 ifeq ($(SPEC), )
  75   MFLAGS-adjusted = -r `$(adjust-mflags) "$(MFLAGS)" "$(HOTSPOT_BUILD_JOBS)"`
  76 else
  77   MFLAGS-adjusted = -r $(MFLAGS)
  78 endif
  79 
  80 
  81 # default target: update lists, make vm
  82 # done in stages to force sequential order with parallel make
  83 #
  84 
  85 default: vm_build_preliminaries the_vm
  86         @echo All done.
  87 
  88 # This is an explicit dependency for the sake of parallel makes.
  89 vm_build_preliminaries:  checks $(Cached_plat) $(AD_Files_If_Required) jvmti_stuff trace_stuff sa_stuff dtrace_stuff
  90         @# We need a null action here, so implicit rules don't get consulted.
  91 
  92 $(Cached_plat): $(Plat_File)
  93         $(CDG) $(CP) $(Plat_File) $(Cached_plat)
  94 
  95 # make AD files as necessary
  96 ad_stuff: $(Cached_plat) $(adjust-mflags)
  97         @$(MAKE) -f adlc.make $(MFLAGS-adjusted)
  98 
  99 # generate JVMTI files from the spec
 100 jvmti_stuff: $(Cached_plat) $(adjust-mflags)
 101         @$(MAKE) -f jvmti.make $(MFLAGS-adjusted)
 102 
 103 # generate trace files
 104 trace_stuff: jvmti_stuff $(Cached_plat) $(adjust-mflags)
 105         @$(MAKE) -f trace.make $(MFLAGS-adjusted)
 106 
 107 ifeq ($(OS_VENDOR), Darwin)
 108 # generate dtrace header files
 109 dtrace_stuff: $(Cached_plat) $(adjust-mflags)
 110         @$(MAKE) -f dtrace.make dtrace_stuff $(MFLAGS-adjusted) GENERATED=$(GENERATED)
 111 else
 112 dtrace_stuff:
 113         @# We need a null action here, so implicit rules don't get consulted.
 114 endif
 115 
 116 # generate SA jar files and native header
 117 sa_stuff:
 118         @$(MAKE) -f sa.make $(MFLAGS-adjusted)
 119 
 120 # and the VM: must use other makefile with dependencies included
 121 
 122 # We have to go to great lengths to get control over the -jN argument
 123 # to the recursive invocation of vm.make.  The problem is that gnumake
 124 # resets -jN to -j1 for recursive runs.  (How helpful.)
 125 # Note that the user must specify the desired parallelism level via a
 126 # command-line or environment variable name HOTSPOT_BUILD_JOBS.
 127 $(adjust-mflags): $(GAMMADIR)/make/$(Platform_os_family)/makefiles/adjust-mflags.sh
 128         @+rm -f $@ $@+
 129         @+cat $< > $@+
 130         @+chmod +x $@+
 131         @+mv $@+ $@
 132 
 133 the_vm: vm_build_preliminaries $(adjust-mflags)
 134         +@$(UpdatePCH)
 135         @$(MAKE) -f vm.make $(MFLAGS-adjusted)
 136 
 137 install : the_vm
 138         @$(MAKE) -f vm.make $@
 139 
 140 # next rules support "make foo.[ois]"
 141 
 142 %.o %.i %.s:
 143         +$(UpdatePCH)
 144         $(MAKE) -f vm.make $(MFLAGS) $@
 145         #$(MAKE) -f vm.make $@
 146 
 147 # this should force everything to be rebuilt
 148 clean:
 149         rm -f $(GENERATED)/*.class
 150         $(MAKE) -f vm.make $(MFLAGS) clean
 151 
 152 # just in case it doesn't, this should do it
 153 realclean:
 154         $(MAKE) -f vm.make $(MFLAGS) clean
 155         rm -fr $(GENERATED)
 156 
 157 .PHONY: default vm_build_preliminaries
 158 .PHONY: lists ad_stuff jvmti_stuff sa_stuff the_vm clean realclean
 159 .PHONY: checks check_os_version install
 160 
 161 .NOTPARALLEL: