@@ -36,14 +36,14 @@ For the compilation of CMake-aware project, Trilinos provides the FIND_PACKAGE(
For compiling using simple makefiles, Trilinos provides Makefile.export system, which allows users to include important Trilinos variables directly into their makefiles. This can be done simply by inserting the following line into the makefile:
```bash
include Makefile.export.Trilinos
```cpp
includeMakefile.export.Trilinos
```
or
```bash
include Makefile.export.<package>
```cpp
includeMakefile.export.<package>
```
if you are interested only in a specific Trilinos package. This will give you access to the variables such as Trilinos_CXX_COMPILER, Trilinos_INCLUDE_DIRS, Trilinos_LIBRARY_DIRS etc. For the detailed description and example makefile see <http://trilinos.sandia.gov/Export_Makefile.txt>.