1 2 3 4 5 6 7 8 9
$(shell touch foo.in) all: foo.out test "$(wildcard ./*.in)" = "./foo.in" @echo TEST-PASS ./%.out: %.in test "$@" = "foo.out" cp $< $@