mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +09:00
10 lines
112 B
Makefile
10 lines
112 B
Makefile
all: foo.out
|
|
test -f $^
|
|
@echo TEST-PASS
|
|
|
|
foo.out: %.out: %.in
|
|
test "$*" = "foo"
|
|
cp $^ $@
|
|
|
|
foo.in:
|
|
touch $@
|