blob: 40a4176d98cd7b7da4dc124708f00b39d0f0aa00 [file] [log] [blame]
# 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" >>$@