                    CSim - Discrete simulation library

-------------
Installation:
-------------

	A simple `make` should build the static library `libcsim.a` in the
current directory. `make install` installs the library in /usr/local/lib and 
the header file in /usr/local/include. 

-------------
Other targets:
-------------
	
	Other targets in the Makefile are:
	
	* demoprogs: Compiles the demo programs
	* clean :    Removes all the object files and the static library in the
                     current directory and the demo programs
	
	* uninstall: Removes the files created during 'make install'
	* tags     : Runs ctags * on the source

There's a config file called <config.h> in this directory, which can be used to
set some things (currently only one).
				
-------------
Portability:
-------------
	
	The library is completely written in ANSI C, and uses no other 
libraries. Hence it must be portable to any platform supporting an ANSI C 
compiler. Right now, the Makefile is only for gcc/linux, but I'll add more. For
now, if you're on a different platform, just compile all the source files and 
take whatever steps necessary to build a shared/static library.

