comparison make/linux/makefiles/top.make @ 971:0fc81f0a8ca8

6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk Summary: The build fails if the bootstrap JDK defaults to <1.5 Reviewed-by: jcoomes
author andrew
date Sat, 12 Sep 2009 12:50:07 +0100
parents c1345e85f901
children 354d3184f6b2
comparison
equal deleted inserted replaced
970:682194ca1d8d 971:0fc81f0a8ca8
22 # 22 #
23 # 23 #
24 24
25 # top.make is included in the Makefile in the build directories. 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. 26 # It DOES NOT include the vm dependency info in order to be faster.
27 # It's main job is to implement the incremental form of make lists. 27 # Its main job is to implement the incremental form of make lists.
28 # It also: 28 # It also:
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
112 @# We need a null action here, so implicit rules don't get consulted. 112 @# We need a null action here, so implicit rules don't get consulted.
113 113
114 # make makeDeps: (and zap the cached db files to force a nonincremental run) 114 # make makeDeps: (and zap the cached db files to force a nonincremental run)
115 115
116 $(GENERATED)/$(MakeDepsClass): $(MakeDepsSources) 116 $(GENERATED)/$(MakeDepsClass): $(MakeDepsSources)
117 @$(REMOTE) $(COMPILE.JAVAC) -classpath $(GAMMADIR)/src/share/tools/MakeDeps -g -d $(GENERATED) $(MakeDepsSources) 117 @$(REMOTE) $(COMPILE.JAVAC) -classpath $(GAMMADIR)/src/share/tools/MakeDeps -d $(GENERATED) $(MakeDepsSources)
118 @echo Removing $(Incremental_Lists) to force regeneration. 118 @echo Removing $(Incremental_Lists) to force regeneration.
119 @rm -f $(Incremental_Lists) 119 @rm -f $(Incremental_Lists)
120 @$(CDG) echo >$(Cached_plat) 120 @$(CDG) echo >$(Cached_plat)
121 121
122 # make incremental_lists, if cached files out of date, run makeDeps 122 # make incremental_lists, if cached files out of date, run makeDeps