mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 03:08:38 +09:00
9 lines
141 B
Makefile
9 lines
141 B
Makefile
$(shell touch foo.in)
|
|
|
|
all: foo.out
|
|
test "$(wildcard ./*.in)" = "./foo.in"
|
|
@echo TEST-PASS
|
|
|
|
./%.out: %.in
|
|
test "$@" = "foo.out"
|
|
cp $< $@
|