mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 22:08:40 +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 $@
|