 
 To create the library
 ---------------------

 To create the library go to the Include directory and 
 do the following

   cd Include 
   make newlib
   make lib

 This will create a file Xpp/libXpp.a .


 To use the library 
 ------------------
 You can use the library files in two ways.
 
 A] simply include the full pathname of the 
    Xpp/Include path during compilation and link the Xpp library

    for example to compile the butterfly.c program go to the 
    Xpp/Src/XYPlot/  directory and do the following

    g++ butterfly.cc -I../../Include -L../../ -lXpp -lX11 -lm -o butterfly
 
 OR

 B] Copy the libXpp.a into your working directory. Copy all the header
    files in the Xpp/Include directory into your working directory.

 
 Misc
 ----
 Remember to link the Xpp library before the X11 library since the
 loader is stupid. 

 ie:  -lXpp -lX11   

 and not the other way around.
 
