Makefile
author chegar
Sun, 17 Aug 2014 15:51:37 +0100
changeset 25854 98ce0879ab4c
parent 22031 ae288cbb4c28
child 26128 91be51647a45
permissions -rw-r--r--
8054834: Modular Source Code Reviewed-by: alanb, chegar, ihse, mduigou Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, magnus.ihse.bursie@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, paul.sandoz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
     1
#
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
     2
# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
fd16c54261b3 Initial load
duke
parents:
diff changeset
     4
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
fd16c54261b3 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5499
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 4309
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5499
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 4309
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    10
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
fd16c54261b3 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
fd16c54261b3 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
fd16c54261b3 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
fd16c54261b3 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
fd16c54261b3 Initial load
duke
parents:
diff changeset
    16
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
fd16c54261b3 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
fd16c54261b3 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
fd16c54261b3 Initial load
duke
parents:
diff changeset
    20
#
5499
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 4309
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 4309
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
eb0b3e373167 6943119: Rebrand source copyright notices
ohair
parents: 4309
diff changeset
    23
# questions.
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    24
#
fd16c54261b3 Initial load
duke
parents:
diff changeset
    25
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    26
# This must be the first rule
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    27
default:
17
bb9f330cd95a 6649672: Adjustments to OUTPUTDIR default and mkdirs to avoid empty directory clutter
ohair
parents: 16
diff changeset
    28
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    29
# Inclusion of this pseudo-target will cause make to execute this file
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    30
# serially, regardless of -j. Recursively called makefiles will not be
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    31
# affected, however. This is required for correct dependency management.
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    32
.NOTPARALLEL:
9618
83db8167c9f6 7043700: Regression for IcedTea builds
ohair
parents: 9309
diff changeset
    33
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    34
# The shell code below will be executed on /usr/ccs/bin/make on Solaris, but not in GNU make.
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    35
# /usr/ccs/bin/make lacks basically every other flow control mechanism.
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    36
TEST_FOR_NON_GNUMAKE:sh=echo You are not using GNU make/gmake, this is a requirement. Check your path. 1>&2 && exit 1
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
    37
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    38
# Assume we have GNU make, but check version.
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    39
ifeq ($(strip $(foreach v, 3.81% 3.82% 4.%, $(filter $v, $(MAKE_VERSION)))), )
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    40
  $(error This version of GNU Make is too low ($(MAKE_VERSION)). Check your path, or upgrade to 3.81 or newer.)
874
638ddad10e12 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 668
diff changeset
    41
endif
638ddad10e12 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 668
diff changeset
    42
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    43
# Locate this Makefile
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    44
ifeq ($(filter /%,$(lastword $(MAKEFILE_LIST))),)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    45
  makefile_path:=$(CURDIR)/$(lastword $(MAKEFILE_LIST))
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    46
else
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    47
  makefile_path:=$(lastword $(MAKEFILE_LIST))
874
638ddad10e12 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 668
diff changeset
    48
endif
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    49
root_dir:=$(dir $(makefile_path))
874
638ddad10e12 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 668
diff changeset
    50
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    51
# ... and then we can include our helper functions
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    52
include $(root_dir)/make/MakeHelpers.gmk
15903
bc0e6cd9d760 8008914: Add nashorn to the tl build
jjg
parents: 15064
diff changeset
    53
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    54
$(eval $(call ParseLogLevel))
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    55
$(eval $(call ParseConfAndSpec))
8441
30f5ad688d4a 7021753: Add a build times report
ohrstrom
parents: 7876
diff changeset
    56
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    57
# Now determine if we have zero, one or several configurations to build.
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    58
ifeq ($(SPEC),)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    59
  # Since we got past ParseConfAndSpec, we must be building a global target. Do nothing.
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
    60
else
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    61
  # In Cygwin, the MAKE variable gets messed up if the make executable is called with
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    62
  # a Windows mixed path (c:/cygwin/bin/make.exe). If that's the case, fix it by removing
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    63
  # the prepended root_dir.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    64
  ifneq ($(findstring :, $(MAKE)), )
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    65
    MAKE := $(patsubst $(root_dir)%, %, $(MAKE))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    66
  endif
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    67
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    68
  # We are potentially building multiple configurations.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    69
  # First, find out the valid targets
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    70
  # Run the makefile with an arbitrary SPEC using -p -q (quiet dry-run and dump rules) to find
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    71
  # available PHONY targets. Use this list as valid targets to pass on to the repeated calls.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    72
  all_phony_targets := $(sort $(filter-out $(global_targets), $(strip $(shell \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    73
      cd $(root_dir)/make && $(MAKE) -f Main.gmk -p -q FRC SPEC=$(firstword $(SPEC)) | \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    74
      grep "^.PHONY:" | head -n 1 | cut -d " " -f 2-))))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    75
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    76
  # Loop through the configurations and call the main-wrapper for each one. The wrapper
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    77
  # target will execute with a single configuration loaded.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    78
  $(all_phony_targets):
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    79
	@$(if $(TARGET_RUN),,\
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    80
          $(foreach spec,$(SPEC),\
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    81
            (cd $(root_dir) && $(MAKE) SPEC=$(spec) MAIN_TARGETS="$(call GetRealTarget)" \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    82
	    $(VERBOSE) VERBOSE=$(VERBOSE) LOG_LEVEL=$(LOG_LEVEL) main-wrapper) &&) true)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    83
	@echo > /dev/null
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    84
	$(eval TARGET_RUN=true)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    85
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    86
  .PHONY: $(all_phony_targets)
874
638ddad10e12 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 668
diff changeset
    87
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    88
  ifneq ($(MAIN_TARGETS), )
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    89
    # The wrapper target was called so we now have a single configuration. Load the spec file
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    90
    # and call the real Main.gmk.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    91
    include $(SPEC)
874
638ddad10e12 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 668
diff changeset
    92
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    93
    ### Clean up from previous run
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    94
    # Remove any build.log from a previous run, if they exist
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    95
    ifneq (,$(BUILD_LOG))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    96
      ifneq (,$(BUILD_LOG_PREVIOUS))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    97
        # Rotate old log
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    98
        $(shell $(RM) $(BUILD_LOG_PREVIOUS) 2> /dev/null)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    99
        $(shell $(MV) $(BUILD_LOG) $(BUILD_LOG_PREVIOUS) 2> /dev/null)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   100
      else
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   101
        $(shell $(RM) $(BUILD_LOG) 2> /dev/null)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   102
      endif
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   103
      $(shell $(RM) $(OUTPUT_ROOT)/build-trace-time.log 2> /dev/null)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   104
    endif
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   105
    # Remove any javac server logs and port files. This
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   106
    # prevents a new make run to reuse the previous servers.
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   107
    ifneq (,$(SJAVAC_SERVER_DIR))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   108
      $(shell $(MKDIR) -p $(SJAVAC_SERVER_DIR) && $(RM) -rf $(SJAVAC_SERVER_DIR)/*)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   109
    endif
874
638ddad10e12 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 668
diff changeset
   110
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   111
    main-wrapper:
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   112
	@$(if $(findstring clean, $(MAIN_TARGETS)), , $(call AtMakeStart))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   113
	(cd $(root_dir)/make && $(BUILD_LOG_WRAPPER) $(MAKE) -f Main.gmk SPEC=$(SPEC) -j $(JOBS) \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   114
	    $(VERBOSE) VERBOSE=$(VERBOSE) LOG_LEVEL=$(LOG_LEVEL) $(MAIN_TARGETS) \
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   115
	    $(if $(filter true, $(OUTPUT_SYNC_SUPPORTED)), -O$(OUTPUT_SYNC)))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   116
	@$(if $(findstring clean, $(MAIN_TARGETS)), , $(call AtMakeEnd))
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   117
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   118
     .PHONY: main-wrapper
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   119
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   120
   endif
874
638ddad10e12 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 668
diff changeset
   121
endif
638ddad10e12 6728161: Add SKIP_BOOT_CYCLE feature to create boot jdk and use it during build
ohair
parents: 668
diff changeset
   122
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   123
# Here are "global" targets, i.e. targets that can be executed without specifying a single configuration.
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   124
# If you add more global targets, please update the variable global_targets in MakeHelpers.
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
   125
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   126
help:
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   127
	$(info )
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   128
	$(info OpenJDK Makefile help)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   129
	$(info =====================)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   130
	$(info )
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   131
	$(info Common make targets)
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   132
	$(info .  make [default]         # Compile all modules in langtools, hotspot, jaxp, jaxws,)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   133
	$(info .                         # corba and jdk and create a runnable "exploded" image)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   134
	$(info .  make all               # Compile everything, all repos, docs and images)
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   135
	$(info .  make images            # Create complete j2sdk and j2re images)
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   136
	$(info .  make docs              # Create all docs)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   137
	$(info .  make docs-javadoc      # Create just javadocs, depends on less than full docs)
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   138
	$(info .  make profiles          # Create complete j2re compact profile images)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   139
	$(info .  make bootcycle-images  # Build images twice, second time with newly build JDK)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   140
	$(info .  make install           # Install the generated images locally)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   141
	$(info .  make clean             # Remove all files generated by make, but not those)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   142
	$(info .                         # generated by configure)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   143
	$(info .  make dist-clean        # Remove all files, including configuration)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   144
	$(info .  make help              # Give some help on using make)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   145
	$(info .  make test              # Run tests, default is all tests (see TEST below))
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   146
	$(info )
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   147
	$(info Targets for specific modules)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   148
	$(info .  make <module>          # Build <module> and everything it depends on. )
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   149
	$(info .  make <module>-only     # Build <module> only, without dependencies. This)
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   150
	$(info .                         # is faster but can result in incorrect build results!)
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   151
	$(info .  make <module>-java     # Compile java classes for <module> and everything it)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   152
	$(info .                         # depends on)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   153
	$(info .  make <module>-libs     # Build native libraries for <module> and everything it)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   154
	$(info .                         # depends on)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   155
	$(info .  make <module>-launchers# Build native executables for <module> and everything it)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   156
	$(info .                         # depends on)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   157
	$(info .  make <module>-gensrc   # Execute the gensrc step for <module> and everything it)
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
   158
	$(info .                         # depends on)
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   159
	$(info )
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   160
	$(info Useful make variables)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   161
	$(info .  make CONF=             # Build all configurations (note, assignment is empty))
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   162
	$(info .  make CONF=<substring>  # Build the configuration(s) with a name matching)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   163
	$(info .                         # <substring>)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   164
	$(info )
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   165
	$(info .  make LOG=<loglevel>    # Change the log level from warn to <loglevel>)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   166
	$(info .                         # Available log levels are:)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   167
	$(info .                         # 'warn' (default), 'info', 'debug' and 'trace')
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   168
	$(info .                         # To see executed command lines, use LOG=debug)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   169
	$(info )
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   170
	$(info .  make JOBS=<n>          # Run <n> parallel make jobs)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   171
	$(info .                         # Note that -jN does not work as expected!)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   172
	$(info )
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   173
	$(info .  make test TEST=<test>  # Only run the given test or tests, e.g.)
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   174
	$(info .                         # make test TEST="jdk_lang jdk_net")
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   175
	$(info )
0
fd16c54261b3 Initial load
duke
parents:
diff changeset
   176
21759
e24e22311718 8027566: Remove the old build system
ihse
parents: 19758
diff changeset
   177
.PHONY: help