comparison make/linux/makefiles/top.make @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents d2ede61b7a12
children 5d801e6b9a80 b92c45f2bc75
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
29 # -builds and runs adlc via adlc.make 29 # -builds and runs adlc via adlc.make
30 # -generates JVMTI source and docs via jvmti.make (JSR-163) 30 # -generates JVMTI source and docs via jvmti.make (JSR-163)
31 # -generate sa-jdi.jar (JDI binding to core files) 31 # -generate sa-jdi.jar (JDI binding to core files)
32 32
33 # It assumes the following flags are set: 33 # It assumes the following flags are set:
34 # CFLAGS Platform_file, Src_Dirs, SYSDEFS, AOUT, Obj_Files 34 # CFLAGS Platform_file, Src_Dirs_I, Src_Dirs_V, SYSDEFS, AOUT, Obj_Files
35 35
36 # -- D. Ungar (5/97) from a file by Bill Bush 36 # -- D. Ungar (5/97) from a file by Bill Bush
37 37
38 # Don't override the built-in $(MAKE). 38 # Don't override the built-in $(MAKE).
39 # Instead, use "gmake" (or "gnumake") from the command line. --Rose 39 # Instead, use "gmake" (or "gnumake") from the command line. --Rose
43 GENERATED = $(TOPDIR)/../generated 43 GENERATED = $(TOPDIR)/../generated
44 VM = $(GAMMADIR)/src/share/vm 44 VM = $(GAMMADIR)/src/share/vm
45 Plat_File = $(Platform_file) 45 Plat_File = $(Platform_file)
46 CDG = cd $(GENERATED); 46 CDG = cd $(GENERATED);
47 47
48 # Pick up MakeDeps' sources and definitions
49 include $(GAMMADIR)/make/$(Platform_os_family)/makefiles/makedeps.make
50 MakeDepsClass = MakeDeps.class
51
52 ifdef USE_PRECOMPILED_HEADER 48 ifdef USE_PRECOMPILED_HEADER
53 PrecompiledOption = -DUSE_PRECOMPILED_HEADER 49 PrecompiledOption = -DUSE_PRECOMPILED_HEADER
54 UpdatePCH = $(MAKE) -f vm.make $(PRECOMPILED_HEADER) $(MFLAGS) 50 UpdatePCH = $(MAKE) -f vm.make $(PRECOMPILED_HEADER) $(MFLAGS)
55 else 51 else
56 UpdatePCH = \# precompiled header is not used 52 UpdatePCH = \# precompiled header is not used
57 PrecompiledOption = 53 PrecompiledOption =
58 endif 54 endif
59 55
60 MakeDeps = $(RUN.JAVA) $(PrecompiledOption) -classpath $(GENERATED) MakeDeps
61
62 Include_DBs/GC = $(VM)/includeDB_gc \
63 $(VM)/includeDB_gc_parallel \
64 $(VM)/gc_implementation/includeDB_gc_parallelScavenge \
65 $(VM)/gc_implementation/includeDB_gc_concurrentMarkSweep \
66 $(VM)/gc_implementation/includeDB_gc_parNew \
67 $(VM)/gc_implementation/includeDB_gc_g1 \
68 $(VM)/gc_implementation/includeDB_gc_serial \
69 $(VM)/gc_implementation/includeDB_gc_shared
70
71 Include_DBs/CORE = $(VM)/includeDB_core $(Include_DBs/GC) \
72 $(VM)/includeDB_jvmti \
73 $(VM)/includeDB_features
74 Include_DBs/COMPILER1 = $(Include_DBs/CORE) $(VM)/includeDB_compiler1
75 Include_DBs/COMPILER2 = $(Include_DBs/CORE) $(VM)/includeDB_compiler2
76 Include_DBs/TIERED = $(Include_DBs/CORE) $(VM)/includeDB_compiler1 $(VM)/includeDB_compiler2
77 Include_DBs/ZERO = $(Include_DBs/CORE) $(VM)/includeDB_zero
78 Include_DBs/SHARK = $(Include_DBs/ZERO) $(VM)/includeDB_shark
79 Include_DBs = $(Include_DBs/$(TYPE))
80
81 Cached_plat = $(GENERATED)/platform.current 56 Cached_plat = $(GENERATED)/platform.current
82 Cached_db = $(GENERATED)/includeDB.current
83
84 Incremental_Lists = $(Cached_db)
85 # list generation also creates $(GENERATED)/$(Cached_plat)
86
87 57
88 AD_Dir = $(GENERATED)/adfiles 58 AD_Dir = $(GENERATED)/adfiles
89 ADLC = $(AD_Dir)/adlc 59 ADLC = $(AD_Dir)/adlc
90 AD_Spec = $(GAMMADIR)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad 60 AD_Spec = $(GAMMADIR)/src/cpu/$(Platform_arch)/vm/$(Platform_arch_model).ad
91 AD_Src = $(GAMMADIR)/src/share/vm/adlc 61 AD_Src = $(GAMMADIR)/src/share/vm/adlc
100 # Wierd argument adjustment for "gnumake -j..." 70 # Wierd argument adjustment for "gnumake -j..."
101 adjust-mflags = $(GENERATED)/adjust-mflags 71 adjust-mflags = $(GENERATED)/adjust-mflags
102 MFLAGS-adjusted = -r `$(adjust-mflags) "$(MFLAGS)" "$(HOTSPOT_BUILD_JOBS)"` 72 MFLAGS-adjusted = -r `$(adjust-mflags) "$(MFLAGS)" "$(HOTSPOT_BUILD_JOBS)"`
103 73
104 74
105 # default target: make makeDeps, update lists, make vm 75 # default target: update lists, make vm
106 # done in stages to force sequential order with parallel make 76 # done in stages to force sequential order with parallel make
107 # 77 #
108 78
109 default: vm_build_preliminaries the_vm 79 default: vm_build_preliminaries the_vm
110 @echo All done. 80 @echo All done.
111 81
112 # This is an explicit dependency for the sake of parallel makes. 82 # This is an explicit dependency for the sake of parallel makes.
113 vm_build_preliminaries: checks $(Incremental_Lists) $(AD_Files_If_Required) jvmti_stuff sa_stuff 83 vm_build_preliminaries: checks $(Cached_plat) $(AD_Files_If_Required) jvmti_stuff sa_stuff
114 @# We need a null action here, so implicit rules don't get consulted. 84 @# We need a null action here, so implicit rules don't get consulted.
115 85
116 # make makeDeps: (and zap the cached db files to force a nonincremental run) 86 $(Cached_plat): $(Plat_File)
117
118 $(GENERATED)/$(MakeDepsClass): $(MakeDepsSources)
119 @$(REMOTE) $(COMPILE.JAVAC) -classpath $(GAMMADIR)/src/share/tools/MakeDeps -d $(GENERATED) $(MakeDepsSources)
120 @echo Removing $(Incremental_Lists) to force regeneration.
121 @rm -f $(Incremental_Lists)
122 @$(CDG) echo >$(Cached_plat)
123
124 # make incremental_lists, if cached files out of date, run makeDeps
125
126 $(Incremental_Lists): $(Include_DBs) $(Plat_File) $(GENERATED)/$(MakeDepsClass)
127 $(CDG) cat $(Include_DBs) > $(GENERATED)/includeDB
128 $(CDG) if [ ! -r incls ] ; then \
129 mkdir incls ; \
130 fi
131 $(CDG) (echo $(CDG) echo $(MakeDeps) diffs UnixPlatform $(Cached_plat) $(Cached_db) $(Plat_File) $(GENERATED)/includeDB $(MakeDepsOptions)) > makeDeps.sh
132 $(CDG) $(REMOTE) sh $(GENERATED)/makeDeps.sh
133 $(CDG) cp includeDB $(Cached_db)
134 $(CDG) cp $(Plat_File) $(Cached_plat) 87 $(CDG) cp $(Plat_File) $(Cached_plat)
135 88
136 # symbolic target for command lines
137 lists: $(Incremental_Lists)
138 @: lists are now up to date
139
140 # make AD files as necessary 89 # make AD files as necessary
141 ad_stuff: $(Incremental_Lists) $(adjust-mflags) 90 ad_stuff: $(Cached_plat) $(adjust-mflags)
142 @$(MAKE) -f adlc.make $(MFLAGS-adjusted) 91 @$(MAKE) -f adlc.make $(MFLAGS-adjusted)
143 92
144 # generate JVMTI files from the spec 93 # generate JVMTI files from the spec
145 jvmti_stuff: $(Incremental_Lists) $(adjust-mflags) 94 jvmti_stuff: $(Cached_plat) $(adjust-mflags)
146 @$(MAKE) -f jvmti.make $(MFLAGS-adjusted) 95 @$(MAKE) -f jvmti.make $(MFLAGS-adjusted)
147 96
148 # generate SA jar files and native header 97 # generate SA jar files and native header
149 sa_stuff: 98 sa_stuff:
150 @$(MAKE) -f sa.make $(MFLAGS-adjusted) 99 @$(MAKE) -f sa.make $(MFLAGS-adjusted)
167 @$(MAKE) -f vm.make $(MFLAGS-adjusted) 116 @$(MAKE) -f vm.make $(MFLAGS-adjusted)
168 117
169 install: the_vm 118 install: the_vm
170 @$(MAKE) -f vm.make install 119 @$(MAKE) -f vm.make install
171 120
172 # next rules support "make foo.[oi]" 121 # next rules support "make foo.[ois]"
173 122
174 %.o %.i %.s: 123 %.o %.i %.s:
175 $(UpdatePCH) 124 $(UpdatePCH)
176 $(MAKE) -f vm.make $(MFLAGS) $@ 125 $(MAKE) -f vm.make $(MFLAGS) $@
177 #$(MAKE) -f vm.make $@ 126 #$(MAKE) -f vm.make $@
178 127
179 # this should force everything to be rebuilt 128 # this should force everything to be rebuilt
180 clean: 129 clean:
181 rm -f $(GENERATED)/*.class 130 rm -f $(GENERATED)/*.class
182 $(MAKE) $(MFLAGS) $(GENERATED)/$(MakeDepsClass)
183 $(MAKE) -f vm.make $(MFLAGS) clean 131 $(MAKE) -f vm.make $(MFLAGS) clean
184 132
185 # just in case it doesn't, this should do it 133 # just in case it doesn't, this should do it
186 realclean: 134 realclean:
187 $(MAKE) -f vm.make $(MFLAGS) clean 135 $(MAKE) -f vm.make $(MFLAGS) clean