blob: 40a4176d98cd7b7da4dc124708f00b39d0f0aa00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# If the dependency graph includes a diamond dependency, we should only remake
# once!
all: depA depB
cat testfile
test `cat testfile` = "data";
@echo TEST-PASS
depA: testfile
depB: testfile
testfile:
printf "data" >>$@
|