QUICK GUIDE
===========

In order to create a new library named "mylib" you need to 

1. Create a folder named ee_mylib in runtime. Copy there the files from this 
   directory and rename "ortconf.LibraryNameHere" to "ortconf.mylib"
2. Edit ortconf.mylib according to your library needs.
3. Edit the meson.build file and just complete the first three lines 
   (library name, compiler flags to make it and the list of source files), 
   below the "# Just specify the 3 thingies:" comment.


OPTIONAL [ needs revision ]

1. If your library needs to be compiled by a different compiler than the one
   used for building ompicc, put a "Makelib.conf" in your library folder

2. If you want ompicc to create a Makefile along with the compiled program
   (for example when there is a special procedure involved when you need to
   run the program), use "MakefileTemplate", and list it in "ompilib_DATA"
   in Makefile.am. When you compile a program, ompicc will copy the Makefile
   in the folder it was called from (unless you pass the "--nomakefile" 
   option to ompicc) and then execute targets "compile" and "link" for 
   compiling and linking.
