mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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" >>$@
|