1 |
9727
|
aaronmk
|
#!/bin/bash
|
2 |
|
|
# runs make, hiding verbose messages about making included Makefiles
|
3 |
|
|
# usage: bin/make target...
|
4 |
|
|
|
5 |
9738
|
aaronmk
|
. "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"/../lib/sh/util.sh
|
6 |
|
|
. "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"/../lib/sh/make.sh
|
7 |
9862
|
aaronmk
|
. "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"/../lib/sh/local.sh
|
8 |
9727
|
aaronmk
|
|
9 |
9732
|
aaronmk
|
no_PATH_recursion
|
10 |
9733
|
aaronmk
|
cmd_name_log_inc=1 # don't print make cmd by default
|
11 |
9741
|
aaronmk
|
"log++" set_fds "$log_fd>&1" # use standard make logging port
|
12 |
9732
|
aaronmk
|
set_inv is_outermost
|
13 |
9869
|
aaronmk
|
if test "$no_is_outermost"; then verbosity_compat; fi
|
14 |
9732
|
aaronmk
|
${no_is_outermost:+exec }make "$@"
|