Difference between revisions of "Creating MPICH Manpages"
From Mpich
(Created page with "* Generate man pages The man pages are generated using tools from http://www.cs.uiuc.edu/homes/wgropp/projects/software/sowing/index.htm Install sowing tools like follows: <p...") |
|||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
* Generate man pages | * Generate man pages | ||
− | The man pages are generated using tools from | + | The man pages are generated using tools from |
− | http:// | + | http://wgropp.cs.illinois.edu/projects/software/sowing/ |
+ | |||
Install sowing tools like follows: | Install sowing tools like follows: | ||
<pre> | <pre> | ||
− | ./configure --prefix=/path/to/install | + | ./configure --prefix=</path/to/install> |
make && make install | make && make install | ||
− | export PATH=/path/to/install:$PATH | + | export PATH=</path/to/install>/bin:$PATH |
− | export DOCTEXT_PATH=/path/to/install/share/doctext | + | export DOCTEXT_PATH=</path/to/install>/share/doctext |
</pre> | </pre> | ||
− | After installation, do 'make mandoc' in mpich directory. | + | After installation, do 'make mandoc && make install' in your mpich directory. |
Latest revision as of 23:11, 13 December 2020
- Generate man pages
The man pages are generated using tools from http://wgropp.cs.illinois.edu/projects/software/sowing/
Install sowing tools like follows:
./configure --prefix=</path/to/install> make && make install export PATH=</path/to/install>/bin:$PATH export DOCTEXT_PATH=</path/to/install>/share/doctext
After installation, do 'make mandoc && make install' in your mpich directory.