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