mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
13 lines
227 B
Makefile
13 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" >>$@
|