root/bin/make @ 9792
1 |
#!/bin/bash
|
---|---|
2 |
# runs make, hiding verbose messages about making included Makefiles
|
3 |
# usage: bin/make target...
|
4 |
|
5 |
. "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"/../lib/sh/util.sh |
6 |
. "$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"/../lib/sh/make.sh |
7 |
|
8 |
no_PATH_recursion |
9 |
cmd_name_log_inc=1 # don't print make cmd by default |
10 |
"log++" set_fds "$log_fd>&1" # use standard make logging port |
11 |
set_inv is_outermost |
12 |
${no_is_outermost:+exec }make "$@" |