1
|
#!/bin/bash -e
|
2
|
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/runscripts/table.run
|
3
|
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/sh/make.sh
|
4
|
|
5
|
if self_not_included; then
|
6
|
|
7
|
table.tsv/make() # usage: [remake=1] [limit=...] .../run table.tsv/make
|
8
|
{
|
9
|
echo_func; set_make_vars; check_target_exists
|
10
|
to_target mysql_export_local
|
11
|
}
|
12
|
|
13
|
export_mysql()
|
14
|
{
|
15
|
echo_func
|
16
|
table.tsv/make
|
17
|
}
|
18
|
|
19
|
func_override import__table_run
|
20
|
import()
|
21
|
{
|
22
|
echo_func
|
23
|
export_mysql
|
24
|
import__table_run "$@"
|
25
|
}
|
26
|
|
27
|
fi
|