< prev index next >

hotspot/make/bsd/makefiles/top.make

Print this page

        

@@ -26,11 +26,10 @@
 # It DOES NOT include the vm dependency info in order to be faster.
 # Its main job is to implement the incremental form of make lists.
 # It also:
 #   -builds and runs adlc via adlc.make
 #   -generates JVMTI source and docs via jvmti.make (JSR-163)
-#   -generate sa-jdi.jar (JDI binding to core files)
 
 # It assumes the following flags are set:
 # CFLAGS Platform_file, Src_Dirs_I, Src_Dirs_V, SYSDEFS, AOUT, Obj_Files
 
 # -- D. Ungar (5/97) from a file by Bill Bush

@@ -84,11 +83,11 @@
 
 default: vm_build_preliminaries the_vm
         @echo All done.
 
 # This is an explicit dependency for the sake of parallel makes.
-vm_build_preliminaries:  checks $(Cached_plat) $(AD_Files_If_Required) jvmti_stuff trace_stuff sa_stuff dtrace_stuff
+vm_build_preliminaries:  checks $(Cached_plat) $(AD_Files_If_Required) jvmti_stuff trace_stuff dtrace_stuff
         @# We need a null action here, so implicit rules don't get consulted.
 
 $(Cached_plat): $(Plat_File)
         $(CDG) $(CP) $(Plat_File) $(Cached_plat)
 

@@ -111,14 +110,10 @@
 else
 dtrace_stuff:
         @# We need a null action here, so implicit rules don't get consulted.
 endif
 
-# generate SA jar files and native header
-sa_stuff:
-        @$(MAKE) -f sa.make $(MFLAGS-adjusted)
-
 # and the VM: must use other makefile with dependencies included
 
 # We have to go to great lengths to get control over the -jN argument
 # to the recursive invocation of vm.make.  The problem is that gnumake
 # resets -jN to -j1 for recursive runs.  (How helpful.)

@@ -153,9 +148,9 @@
 realclean:
         $(MAKE) -f vm.make $(MFLAGS) clean
         rm -fr $(GENERATED)
 
 .PHONY: default vm_build_preliminaries
-.PHONY: lists ad_stuff jvmti_stuff sa_stuff the_vm clean realclean
+.PHONY: lists ad_stuff jvmti_stuff the_vm clean realclean
 .PHONY: checks check_os_version install
 
 .NOTPARALLEL:
< prev index next >