This is the source code for the C-callable BOS library (BOS: The Basic Object
System). The Makefiles are managed thusly:
	* there is no file named "Makefile" in the CVS repository
	* everyone working on BOS has their own Makefile called
	  Makefile.<username>
	* there is, in addition, a generic Makefile called
	  Makefile.cs_afs, that is the one you should probably
	  use if you are using the CS Makeconf file that
	  is set up to work in AFS.
For someone new, what you do is:
	* make your own Makefile (Makefile.<your-username>), either
	  from scratch (not recomended) or by copying someone
	  else's (or the generic one).
	* edit it to suit your needs.
	* add it to the CVS repository and check it in:
		% cvs add -m 'my make file' Makefile.<your-username>
		% cvs ci -m 'first checkin' Makefile.<your-username>
	* link it to Makefile:
		% ln -s Makefile.<your-user-name> Makefile
