[0b990d] | 1 |
|
---|
| 2 | /** \page sc-libtool
|
---|
| 3 |
|
---|
| 4 | The sc-libtool program is used to link and build MPQC executables and libraries.
|
---|
| 5 |
|
---|
| 6 | \if man
|
---|
| 7 | <h1>Synopsis</h1>
|
---|
| 8 |
|
---|
| 9 | <pre>
|
---|
| 10 | sc-libtool <b>[--config] [--debug] [{-n,--dry-run}] [--features]
|
---|
| 11 | [--finish] [--help] [--mode={clean,compile,finish,install,link,uninstall}]
|
---|
| 12 | [{--quiet,--silent}] [--tag=<i>TAG</i>] [--version] <i>MODE-ARGS</i></b>
|
---|
| 13 | </pre>
|
---|
| 14 | \endif
|
---|
| 15 |
|
---|
| 16 | <h1>Description</h1>
|
---|
| 17 |
|
---|
| 18 | The sc-libtool command provides generalized library-building support
|
---|
| 19 | services. sc-libtool accepts the following options:
|
---|
| 20 |
|
---|
| 21 | <dl>
|
---|
| 22 | <dt><tt>--config</tt><dd>Show all configuration variables.
|
---|
| 23 | <dt><tt>--debug</tt><dd>Enable verbose shell tracing.
|
---|
| 24 | <dt><tt>-n, --dry-run</tt><dd>Display commands without modifying any files.
|
---|
| 25 | <dt><tt>--features</tt><dd>Display basic configuration information and exit.
|
---|
| 26 | <dt><tt>--finish</tt><dd>Same as <tt>--mode=finish</tt>.
|
---|
| 27 | <dt><tt>--help</tt><dd>Display help message and exit
|
---|
| 28 | <dt><tt>--mode=<i>MODE</i></tt><dd>Use operation mode <i>MODE</i> (default=inferred from <i>MODE-ARGS</i>).
|
---|
| 29 | <dt><tt>--quiet</tt><dd>Same as --silent.
|
---|
| 30 | <dt><tt>--silent</tt><dd>Don't print informational messages.
|
---|
| 31 | <dt><tt>--tag=<i>TAG</i></tt><dd>Use configuration variables from tag <i>TAG</i>.
|
---|
| 32 | <dt><tt>--version</tt><dd>Print version information.
|
---|
| 33 | </dl>
|
---|
| 34 |
|
---|
| 35 | <i>MODE</i> must be one of the following:
|
---|
| 36 |
|
---|
| 37 | <dl>
|
---|
| 38 | <dt><tt>clean</tt><dd>Remove files from the build directory.
|
---|
| 39 | <dt><tt>compile</tt><dd>Compile a source file into a libtool object.
|
---|
| 40 | <dt><tt>execute</tt><dd>Automatically set library path, then run a program.
|
---|
| 41 | <dt><tt>finish</tt><dd>Complete the installation of libtool libraries.
|
---|
| 42 | <dt><tt>install</tt><dd>Install libraries or executables.
|
---|
| 43 | <dt><tt>link</tt><dd>Create a library or an executable.
|
---|
| 44 | <dt><tt>uninstall</tt><dd>Remove libraries from an installed directory.
|
---|
| 45 | </dl>
|
---|
| 46 |
|
---|
| 47 | <h1>License</h1>
|
---|
| 48 |
|
---|
| 49 | sc-libtool is open-source software; you can redistribute it and/or modify it
|
---|
| 50 | under the terms of the GNU General Public License as published by the Free
|
---|
| 51 | Software Foundation; either version 2 of the License, or (at your option)
|
---|
| 52 | any later version.
|
---|
| 53 |
|
---|
| 54 | <h1>Warranty</h1>
|
---|
| 55 |
|
---|
| 56 | sc-libtool is distributed in the hope that it will be useful, but WITHOUT ANY
|
---|
| 57 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
---|
| 58 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
---|
| 59 | details.
|
---|
| 60 |
|
---|
| 61 | */
|
---|