root/inputs/GBIF/table.run @ 8998
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; check_target_exists |
9 |
to_target extern "$(dirname "${BASH_SOURCE[0]}")"/MySQL_export |
10 |
}
|
11 |
|
12 |
export_mysql ()
|
13 |
{
|
14 |
echo_func |
15 |
table.tsv/make |
16 |
}
|
17 |
|
18 |
import ()
|
19 |
{
|
20 |
echo_func |
21 |
export_mysql |
22 |
"$(dirname "${BASH_SOURCE[0]}")"/../../lib/runscripts/table.run "$FUNCNAME" "$@" |
23 |
}
|
24 |
|
25 |
fi
|