Revision 1663
Added by Aaron Marcuse-Kubitza almost 13 years ago
input.Makefile | ||
---|---|---|
75 | 75 |
|
76 | 76 |
# Must come before `%: %.make` to override it |
77 | 77 |
src/%: src/%.make _always |
78 |
(set -x; $(make_script)) 3>&2 2>&1 1>&3|tee -a $<.log 3>&2 2>&1 1>&3
|
|
78 |
(set -x; $(make_script)) 2>>$<.log
|
|
79 | 79 |
.PRECIOUS: src/% # save partial outputs of aborted src make scripts |
80 | 80 |
|
81 | 81 |
%: %.make _always |
Also available in: Unified diff
input.Makefile: `src/%: src/%.make`: Don't tee recipe's stderr to make's stderr, because long-running make_scripts usually will be tracked using `tail -f`