Revision 9355
Added by Aaron Marcuse-Kubitza over 11 years ago
lib/runscripts/table.run | ||
---|---|---|
25 | 25 |
mk_esc_name table |
26 | 26 |
export schema table |
27 | 27 |
|
28 |
input_make() # requires Makefile in datasrc dir with `include ../input.Makefile` |
|
29 |
{ echo_func; make --directory="$top_dir"/.. "${@/#/$table/}"; } |
|
28 |
input_make() # usage: [silent=1] input_make target... |
|
29 |
# requires Makefile in datasrc dir with `include ../input.Makefile` |
|
30 |
{ |
|
31 |
echo_func; kw_params silent |
|
32 |
make --directory="$top_dir"/.. ${silent:+--silent }"${@/#/$table/}" |
|
33 |
} |
|
30 | 34 |
# "${@/#/$table/}": replaces empty str at beginning of str (/#) with $table/ |
31 | 35 |
|
32 | 36 |
map_table() |
Also available in: Unified diff
lib/runscripts/table.run: input_make(): added $silent flag which turns on make's --silent option