Revision 9352
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() { echo_func; make --directory="$top_dir"/.. "${@/#/$table/}"; } |
|
28 |
input_make() # requires Makefile in datasrc dir with `include ../input.Makefile` |
|
29 |
{ echo_func; make --directory="$top_dir"/.. "${@/#/$table/}"; } |
|
29 | 30 |
# "${@/#/$table/}": replaces empty str at beginning of str (/#) with $table/ |
30 | 31 |
|
31 | 32 |
map_table() |
Also available in: Unified diff
lib/runscripts/table.run: input_make(): documented that it requires a Makefile in the datasrc dir containing `include ../input.Makefile