1
2This is a late beta release, though it seems to work correctly for me.
3
4To install:
5
61. Change directory to the src directory:
7
8     cd src
9
102. As root, make the executables:
11
12     make
13
143. The man page currently resides in the docs/user directory.  To view
15   it before installing it, make sure you are in that directory and do
16
17     man ./rawrec.1
18
194. If you want to install rawrec/rawplay in a standard location, edit
20   the Makefile and set EXE_DIR and MAN_DIR as desired (defaults are
21   /usr/local/bin and /usr/local/man/man1 respectively).  These
22   directories will be created if they don't already exist when you
23   do:
24
25     make install
26
27   to install the binary and documentation.  Of course, EXE_DIR must
28   be in your path and MAN_DIR in your man path for you to be able to
29   run the executable and view the documentation in the normal way.
30