aboutsummaryrefslogtreecommitdiff
path: root/contrib/bmake/unit-tests/use-inference.mk
blob: cde3c772edaabc81ad297c3b1b9e91c6eae28e8e (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
# $NetBSD: use-inference.mk,v 1.2 2020/11/05 00:41:04 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.

# XXX: Despite the error message "don't know how to make", the exit status
# is 0.  This is inconsistent.