freebsd-dev/contrib/bmake/unit-tests/use-inference.mk
Simon J. Gerraty 2c3632d14f Update to bmake-20200902
Lots of code refactoring, simplification and cleanup.
Lots of new unit-tests providing much higher code coverage.
All courtesy of rillig at netbsd.

Other significant changes:

o new read-only variable .SHELL which provides the path of the shell
  used to run scripts (as defined by  the .SHELL target).

o variable parsing detects more errors.

o new debug option -dl: LINT mode, does the equivalent of := for all
  variable assignments so that file and line number are reported for
  variable parse errors.
2020-09-05 19:29:42 +00:00

36 lines
1.1 KiB
Makefile

# $NetBSD: use-inference.mk,v 1.1 2020/08/09 16:32:28 rillig Exp $
#
# Demonstrate that .USE rules do not have an effect on inference rules.
# At least not in the special case where the inference rule does not
# have any associated commands.
.SUFFIXES:
.SUFFIXES: .from .to
all: use-inference.to
verbose: .USE
@echo 'Verbosely making $@ out of $>'
.from.to: verbose
# Since this inference rule does not have any associated commands, it
# is ignored.
#
# @echo 'Building $@ from $<'
use-inference.from: # assume it exists
@echo 'Building $@ from nothing'
# Possible but unproven explanation:
#
# The main target is "all", which depends on "use-inference.to".
# The inference connects the .from to the .to file, otherwise make
# would not know that the .from file would need to be built.
#
# The .from file is then built.
#
# After this, make stops since it doesn't know how to make the .to file.
# This is strange since make definitely knows about the .from.to suffix
# inference rule. But it seems to ignore it, maybe because it doesn't
# have any associated commands.