tenfourfox/build/pymake/tests/wildcards.mk
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

23 lines
295 B
Makefile

$(shell \
mkdir foo; \
touch a.c b.c c.out foo/d.c; \
sleep 2; \
touch c.in; \
)
VPATH = foo
all: c.out prog
cat $<
test "$$(cat $<)" = "remadec.out"
@echo TEST-PASS
*.out: %.out: %.in
test "$@" = c.out
test "$<" = c.in
printf "remade$@" >$@
prog: *.c
test "$^" = "a.c b.c"
touch $@