Mypal/build/pymake/tests/diamond-deps.mk
2019-03-11 13:26:37 +03:00

14 lines
227 B
Makefile

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