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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#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."},
{"debug", 'd',TAG_STLE_DEBUG,ARGV_OPTARG_NONE,0,0,0,
"display internal debug information."},
{"dry-run", 'n',TAG_STLE_DRY_RUN,ARGV_OPTARG_NONE,0,0,0,
"do not spawn any processes, "
"do not make any changes to the file system."},
{"automake", 0,TAG_STLE_SILENT,ARGV_OPTARG_NONE,0,0,0,
"backward-compatible alias for --quiet."},
{"quiet", 'q',TAG_STLE_SILENT,ARGV_OPTARG_NONE,0,0,0,
"do not say anything."},
{"silent", 's',TAG_STLE_SILENT,ARGV_OPTARG_NONE,0,0,0,
"say absolutely nothing."},
{"verbose", 'v',TAG_STLE_VERBOSE,ARGV_OPTARG_NONE,0,0,0,
"generate lots of informational messages "
"that nobody can understand."},
{"warnings", 'W',TAG_STLE_WARNINGS,ARGV_OPTARG_REQUIRED,0,
"all|none|error|doubt|concern|environment|file",0,
"specify category of warnings to display (or not)."},
{"no-warnings", 0,TAG_STLE_NO_WARNINGS,ARGV_OPTARG_NONE,0,0,0,
"suppress all warning messages (or not)."},
{0,0,0,0,0,0,0,0}
};
|