Project

General

Profile

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 ()
8
{
9
	echo_func; set_make_vars; check_target_exists
10
	to_target extern "$(dirname "${BASH_SOURCE[0]}")"/MySQL_export
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)