make/bsd/makefiles/minimal1.make
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Sdiff make/bsd/makefiles

make/bsd/makefiles/minimal1.make

Print this page




  21 # questions.
  22 #
  23 #
  24 
  25 TYPE=MINIMAL1
  26 
  27 # Force all variables to false, overriding any other
  28 # setting that may have occurred in the makefiles. These
  29 # can still be overridden by passing the variable as an
  30 # argument to 'make'
  31 INCLUDE_JVMTI := false
  32 INCLUDE_FPROF := false
  33 INCLUDE_VM_STRUCTS := false
  34 INCLUDE_JNI_CHECK := false
  35 INCLUDE_SERVICES := false
  36 INCLUDE_MANAGEMENT := false
  37 INCLUDE_ALL_GCS := false
  38 INCLUDE_NMT := false
  39 INCLUDE_TRACE := false
  40 INCLUDE_CDS := false

  41 
  42 CXXFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\"
  43 CFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\"
  44 
  45 Src_Dirs/MINIMAL1 = $(CORE_PATHS) $(COMPILER1_PATHS)
  46 
  47 Src_Files_EXCLUDE/MINIMAL1 += $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
  48 
  49 -include $(HS_ALT_MAKE)/$(OSNAME)/makefiles/minimal1.make
  50 
  51 .PHONY: $(HS_ALT_MAKE)/$(OSNAME)/makefiles/minimal1.make


  21 # questions.
  22 #
  23 #
  24 
  25 TYPE=MINIMAL1
  26 
  27 # Force all variables to false, overriding any other
  28 # setting that may have occurred in the makefiles. These
  29 # can still be overridden by passing the variable as an
  30 # argument to 'make'
  31 INCLUDE_JVMTI := false
  32 INCLUDE_FPROF := false
  33 INCLUDE_VM_STRUCTS := false
  34 INCLUDE_JNI_CHECK := false
  35 INCLUDE_SERVICES := false
  36 INCLUDE_MANAGEMENT := false
  37 INCLUDE_ALL_GCS := false
  38 INCLUDE_NMT := false
  39 INCLUDE_TRACE := false
  40 INCLUDE_CDS := false
  41 INCLUDE_JVMCI := false
  42 
  43 CXXFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\"
  44 CFLAGS += -DMINIMAL_JVM -DCOMPILER1 -DVMTYPE=\"Minimal\"
  45 
  46 Src_Dirs/MINIMAL1 = $(CORE_PATHS) $(COMPILER1_PATHS)
  47 
  48 Src_Files_EXCLUDE/MINIMAL1 += $(COMPILER2_SPECIFIC_FILES) $(ZERO_SPECIFIC_FILES) $(SHARK_SPECIFIC_FILES) ciTypeFlow.cpp
  49 
  50 -include $(HS_ALT_MAKE)/$(OSNAME)/makefiles/minimal1.make
  51 
  52 .PHONY: $(HS_ALT_MAKE)/$(OSNAME)/makefiles/minimal1.make
make/bsd/makefiles/minimal1.make
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File