INSTALLING THE MPU401 DRIVER
  Before installing tclmidi-2.0, you will need to decide if you
wish to install one of the MPU401 drivers I have supplied.
Currently, I have drivers with the same interface for BSD/386,
386BSD and variants, Linux  and SVR4 variants.  If you wish to install
a driver, go to the drivers directory (cd drivers) and
then to the proper subdirectory (BSD, LINUX or SVR4).  Follow
the instructions in the README or INSTALL file.  Unfortunately, I did not
find a tester for SVR4.  The basic code is there, but it probably
will not work.
  The man page for the driver is in drivers/man.  You can install
it with "install man-cooked" or "install man-raw".  The cooked
version will install a preprocessed man page, while the raw version
will install an unprocessed version.

INSTALLING THE TCLMIDI PACKAGE
  You will need to edit the Makefile and set some definitions
near the top.  You will need to define your C and C++ compilers,
ranlib if you have it and some paths for installation.  There are
some defines for CFLAGS that also must be set.
  If you wish to build in support for the MPU401 driver, you
will need to define USE_MPU401 or USE_MPU401COPY.  Without one of
these definitions, you won't be able to play or record.  If you
define one of these, you must also add a defintion for your system
type (BSD, LINUX or SVR4).  This definiton only controls where
the midi device header file is found, and is not needed if
you haven't also defined one of the USE_* flags.
  Once you have customized the Makefile, you need only type
    make
and then
    make install.
  To install the man pages use
    make install-man-cooked
or
    make install-man-raw

  The man pages are written using the newer mandoc macros instead of
the man macros.  "Cooking" the man pages involves running them
through groff (you can use nroff if you want by editing man/Makefile),
and then installing the processed man pages.  The raw target installs
the man sources without processing them.

  If you want a version of tclmidi that includes tk support type
    make tkmidi
and then
    make install-tkmidi

  That should be everything.
