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" >>$@