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
	inline_make 3<<'EOF'
10
table.tsv:
11
	$(self_dir)/MySQL_export >$@
12
EOF
13
}
14

    
15
export_mysql ()
16
{
17
	echo_func
18
	table.tsv/make
19
}
20

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

    
28
fi
(9-9/10)