* __System wide install:__ If you want the headers copied to `/usr/local/include` and the library to `/usr/local/lib` i.e. where to compiler normally looks for this `sudo make install`
* __Local install:__ Here you must define the two environment variables `AUSALIB_INC_DIR` the AUSAlib include directory and `AUSALIB_LIB_DIR` to the location of `libAUSA.a`. A convenient way to do this is to add the following lines to you `~/.bashrc` or `~/.profile`
```
export AUSALIB_INC_DIR=<path to ausalib>/ausalib/include
export AUSALIB_LIB_DIR=<path to ausalib>/ausalib/build
```
__OSX__: OSX users should add it to `~/.profile` and NOT to `~/.bashrc`
10. Export the resource directory environment variable, `AUSALIB_RES_DIR`. This can also conveniently be added to `~/.bashrc` or `~/.profile`:
```export AUSALIB_RES_DIR=<path to ausalib>/ausalib/res```
**OBS: When you pull AUSAlib remember to cmake ./**