blob: e30abd4397eb792f4b24e6dc48decdce47d203a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#T gmake skip
$(shell \
touch filemissing; \
sleep 2; \
touch file1; \
)
all: file1
@echo TEST-PASS
includedeps $(TESTPATH)/includedeps.deps
file1:
@echo TEST-FAIL
|