freebsd-nq/contrib/bmake/unit-tests/directive-ifmake.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

56 lines
1.5 KiB
Makefile

# $NetBSD: directive-ifmake.mk,v 1.4 2020/08/30 14:25:45 rillig Exp $
#
# Tests for the .ifmake directive, which provides a shortcut for asking
# whether a certain target is requested to be made from the command line.
# This is the most basic form.
.ifmake first
.info ok: positive condition works
.else
.warning positive condition fails
.endif
# The not operator works as expected.
# An alternative interpretation were that this condition is asking whether
# the target "!first" was requested. To distinguish this, see the next test.
.ifmake !first
.warning unexpected
.else
.info ok: negation works
.endif
# See if the exclamation mark really means "not", or if it is just part of
# the target name.
.ifmake !!first
.info ok: double negation works
.else
.warning double negation fails
.endif
# Multiple targets can be combined using the && and || operators.
.ifmake first && second
.info ok: both mentioned
.else
.warning && does not work as expected
.endif
# Negation also works in complex conditions.
.ifmake first && !unmentioned
.info ok: only those mentioned
.else
.warning && with ! does not work as expected
.endif
# Using the .MAKEFLAGS special dependency target, arbitrary command
# line options can be added at parse time. This means that it is
# possible to extend the targets to be made.
.MAKEFLAGS: late-target
.ifmake late-target
.info Targets can even be added at parse time.
.else
.info No, targets cannot be added at parse time anymore.
.endif
first second unmentioned late-target:
: $@