tenfourfox/build/pymake/tests/diamond-deps.mk

14 lines
227 B
Makefile
Raw Normal View History

2017-04-19 07:56:45 +00:00
# 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" >>$@