Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 $(shell \
2 mkdir foo; \
3 touch a.c b.c c.out foo/d.c; \
4 sleep 2; \
5 touch c.in; \
6 )
8 VPATH = foo
10 all: c.out prog
11 cat $<
12 test "$$(cat $<)" = "remadec.out"
13 @echo TEST-PASS
15 *.out: %.out: %.in
16 test "$@" = c.out
17 test "$<" = c.in
18 printf "remade$@" >$@
20 prog: *.c
21 test "$^" = "a.c b.c"
22 touch $@