These programs have been compiled and tested under GNU/Linux. They will probably
compile and run on any POSIX-compliant system.

They use libsndfile to read and write the various audio file
formats. To compile them you must have libsndfile installed.
libsndfile is available at: http://www.mega-nerd.com/libsndfile/

To install:
   make
   make install

The only portability issue that is likely to arise is in samuel, which
needs a random number generator that returns a floating point number
between 0 and 1, which it calls by the name of frand(), and a function
to set the seed of the random number generator, which it calls
as srandom(). Different versions of Unix provide different random
number generators. I ought to set up a configure script, but haven't yet.
There are definitions of these functions in the souce for Linux, BSD4.3,
and HPUX. The makefile defines LINUX. You may need to define HPUX or BSD4.3
instead, or create new macros, if you are running a different operating system.


