summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/implicit-terminal.mk
blob: db2e244ed4c1fa5bae019090f5a10ae80647284e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#T returncode: 2

# the %.object rule is "terminal". This means that additional implicit rules cannot be chained to it.

all: test.prog
	test "$$(cat $<)" = "Program: Object: Source: test.source"
	@echo TEST-FAIL

%.prog: %.object
	printf "Program: %s" "$$(cat $<)" > $@

%.object:: %.source
	printf "Object: %s" "$$(cat $<)" > $@

%.source:
	printf "Source: %s" $@ > $@