mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
14 lines
227 B
Makefile
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" >>$@
|