1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include "slibtool_driver_impl.h"
#include "slibtool_visibility_impl.h"
#include "argv/argv.h"
const slbt_hidden struct argv_option slbt_stoolie_options[] = {
{"version", 0,TAG_STLE_VERSION,ARGV_OPTARG_NONE,0,0,0,
"show version information"},
{"help", 'h',TAG_STLE_HELP,ARGV_OPTARG_NONE,0,0,0,
"display slibtoolize (stoolie) mode help"},
{"copy", 'c',TAG_STLE_COPY,ARGV_OPTARG_NONE,0,0,0,
"copy build-auxiliary m4 files "
"(create symbolic links otherwise."},
{"force", 'f',TAG_STLE_FORCE,ARGV_OPTARG_NONE,0,0,0,
"replace existing build-auxiliary and m4 "
"files and/or symbolic links."},
{"install", 'i',TAG_STLE_INSTALL,ARGV_OPTARG_NONE,0,0,0,
"create symbolic links to, or otherwise copy "
"missing build-auxiliary and m4 files."},
{0,0,0,0,0,0,0,0}
};
|