summaryrefslogtreecommitdiffstats
path: root/build/pymake/tests/serial-rule-execution2.mk
blob: 252a7df831cfa3c3400e2ab044f0535e9ff10b24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#T returncode: 2

# The dependencies of the command rule of a single-colon target are resolved before the rules without commands.

all: export

export:
	sleep 1
	touch somefile

all: somefile
	test -f somefile
	@echo TEST-PASS