Few trivial documentation changes

This commit is contained in:
Paul Romano 2015-05-02 09:28:09 +07:00
parent 923a8295ef
commit b73464be7d
2 changed files with 8 additions and 4 deletions

View file

@ -12,6 +12,7 @@ Active development of the OpenMC Monte Carlo code is currently led by:
* `Adam Nelson <https://github.com/nelsonag>`_
* `Jon Walsh <https://github.com/walshjon>`_
* `Sterling Harper <https://github.com/walshjon>`_
* `Will Boyd <https://github.com/wbinventor>`_
* `Benoit Forget <http://web.mit.edu/nse/people/faculty/forget.html>`_
* `Kord Smith <http://web.mit.edu/nse/people/faculty/smith.html>`_
* `Andrew Siegel <http://www.mcs.anl.gov/about/people_detail.php?id=404>`_

View file

@ -42,18 +42,21 @@ the following commands in a terminal:
.. code-block:: sh
git clone git://github.com/mit-crpg/openmc.git
cd openmc/src
cd openmc
git checkout -b master origin/master
mkdir src/build
cd src/build
cmake ..
make
sudo make install
This will build an executable named ``openmc`` and install it (by default in
/usr/local/bin). If you do not have administrator privileges, the last command
can be replaced with a local install, e.g.
/usr/local/bin). If you do not have administrator privileges, the cmake command
should specify an installation directory where you have write access, e.g.
.. code-block:: sh
make install -e prefix=$HOME/.local
cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local ..
.. _GitHub: https://github.com/mit-crpg/openmc
.. _git: http://git-scm.com