Commit 10edfa29 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

Merge branch 'integration' into weighted-balancing

parents 74b1caf2 62b7b69a
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+30 −0
Original line number Diff line number Diff line
*~
*.o
*.so
*.cu_o
*.ptx
*_ptx.h
*.a
*.d
*.x
*.exe
*.dll

Obj_*
log.lammps
log.cite
*.bz2
*.gz
*.tar
.*.swp
*.orig
*.rej
.vagrant

.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

doc/.gitignore

0 → 100644
+1 −0
Original line number Diff line number Diff line
+1 −1
Original line number Diff line number Diff line
# Makefile for LAMMPS documentation
SHA1          = $(shell echo $USER-$PWD | sha1sum | cut -f1 -d" ")
SHA1          = $(shell echo $USER-$PWD | python utils/sha1sum.py)
BUILDDIR      = /tmp/lammps-docs-$(SHA1)
RSTDIR        = $(BUILDDIR)/rst
VENV          = $(BUILDDIR)/docenv
+15 −5
Original line number Diff line number Diff line
@@ -15,18 +15,28 @@ make clean-all # remove entire build folder and any cached data
## Installing prerequisites

To run the documention build toolchain Python 3 and virtualenv have to be
installed. The following are instructions for common Linux distributions:
installed. Here are instructions for common setups:

### virtualenv

#### Ubuntu
### Ubuntu

```bash
sudo apt-get install python-virtualenv
```

#### Fedora
### Fedora

```
sudo yum install python-virtualenv
```

### MacOS X

## Python 3

Download the latest Python 3 MacOS X package from https://www.python.org and install it.
This will install both Python 3 and pip3.

## virtualenv

Once Python 3 is installed, open a Terminal and type `pip3 install virtualenv`. This will
install virtualenv from the Python Package Index.
+1 −1
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@
  <H1></H1><div class="section" id="lammps-documentation">
<h1>LAMMPS Documentation</h1>
<div class="section" id="aug-2016-version">
<h2>20 Aug 2016 version</h2>
<h2>27 Aug 2016 version</h2>
</div>
<div class="section" id="version-info">
<h2>Version info:</h2>
Loading