Project

General

Profile

1
#!/bin/bash -e
2
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/runscripts/table.run
3

    
4
if self_not_included; then
5

    
6
table.tsv/make ()
7
{
8
	echo_func; set_make_vars
9
	! test -e "$target" || return 0
10
	extern "$(dirname "${BASH_SOURCE[0]}")"/MySQL_export >"$target"
11
}
12

    
13
export_mysql ()
14
{
15
	echo_func
16
	table.tsv/make
17
}
18

    
19
import ()
20
{
21
	echo_func
22
	export_mysql
23
	"$(dirname "${BASH_SOURCE[0]}")"/../../lib/runscripts/table.run "$FUNCNAME" "$@"
24
}
25

    
26
fi
(9-9/10)