< prev index next >

make/Help.gmk

Print this page




  98         $(info $(_) JOBS=<n>               # Run <n> parallel make jobs)
  99         $(info $(_)                        # Note that -jN does not work as expected!)
 100         $(info $(_) TEST_JOBS=<n>          # Run <n> parallel test jobs)
 101         $(info $(_) CONF_CHECK=<method>    # What to do if spec file is out of date)
 102         $(info $(_)                        # method is 'auto', 'ignore' or 'fail' (default))
 103         $(info $(_) make test TEST=<test>  # Only run the given test or tests, e.g.)
 104         $(info $(_)                        # make test TEST="jdk_lang jdk_net")
 105         $(info $(_) JTREG="OPT1=x;OPT2=y"  # Control the JTREG test harness for run-test)
 106         $(info $(_) GTEST="OPT1=x;OPT2=y"  # Control the GTEST test harness for run-test)
 107         $(info )
 108         $(if $(all_confs), $(info Available configurations in $(build_dir):) $(foreach var,$(all_confs),$(info * $(var))),\
 109             $(info No configurations were found in $(build_dir).) $(info Run 'bash configure' to create a configuration.))
 110         # We need a dummy rule otherwise make will complain
 111         @true
 112 
 113 print-configurations:
 114         $(foreach var, $(all_confs), $(info $(var)))
 115         # We need a dummy rule otherwise make will complain
 116         @true
 117 
 118 ALL_GLOBAL_TARGETS := help print-configurations







 119 
 120 .PHONY: $(ALL_GLOBAL_TARGETS)


  98         $(info $(_) JOBS=<n>               # Run <n> parallel make jobs)
  99         $(info $(_)                        # Note that -jN does not work as expected!)
 100         $(info $(_) TEST_JOBS=<n>          # Run <n> parallel test jobs)
 101         $(info $(_) CONF_CHECK=<method>    # What to do if spec file is out of date)
 102         $(info $(_)                        # method is 'auto', 'ignore' or 'fail' (default))
 103         $(info $(_) make test TEST=<test>  # Only run the given test or tests, e.g.)
 104         $(info $(_)                        # make test TEST="jdk_lang jdk_net")
 105         $(info $(_) JTREG="OPT1=x;OPT2=y"  # Control the JTREG test harness for run-test)
 106         $(info $(_) GTEST="OPT1=x;OPT2=y"  # Control the GTEST test harness for run-test)
 107         $(info )
 108         $(if $(all_confs), $(info Available configurations in $(build_dir):) $(foreach var,$(all_confs),$(info * $(var))),\
 109             $(info No configurations were found in $(build_dir).) $(info Run 'bash configure' to create a configuration.))
 110         # We need a dummy rule otherwise make will complain
 111         @true
 112 
 113 print-configurations:
 114         $(foreach var, $(all_confs), $(info $(var)))
 115         # We need a dummy rule otherwise make will complain
 116         @true
 117 
 118 # This is not really a "help" target, but it is a global target, and those are
 119 # all contained in this file.
 120 run-test-prebuilt:
 121         @( cd $(topdir) && \
 122             $(MAKE) --no-print-directory -r -R -I make/common/ -f make/RunTestsPrebuilt.gmk \
 123             run-test-prebuilt TEST="$(TEST)" )
 124 
 125 ALL_GLOBAL_TARGETS := help print-configurations run-test-prebuilt
 126 
 127 .PHONY: $(ALL_GLOBAL_TARGETS)
< prev index next >