summaryrefslogtreecommitdiff
path: root/unit-tests/directive-ifmake.mk
blob: 20329bc5ce25d13455071a2d093ad9d4c7ce91c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# $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:
	: $@