SYNOPSIS $ vi conf.mk $ make && make strip $ su # make install DESCRIPTION The build system and source code are intended to be generic and portable. Using your preferred text editor, open the file "conf.mk" in the top-level directory to configure the compiler, the compiler options, and the installation directories: $ vi conf.mk As an unprivileged user, build the software with: $ make The system is intended to be make(1) "agnostic", and should build correctly with any standard make provided with either BSD or Linux systems. Strip debugging symbols for smaller executables: $ make strip To install the compiled binaries and man pages, gain administrator privilege and run: $ su # make install The software is now installed on the system. ### EOF