Package Dependencies
====================

   Before you build and optionally install this software, you must
make sure that the static version of the sepol library is available.
The easiest way to obtain this library is by installing the
libsepol-devel package.

Basic Installation
==================

   To install SLAT, the only thing you must do is type

   $ ./configure
   $ make
   $ make install

If the sepol header files are in a nonstandard directory, say in
$SEPOL_INCLUDE, and the static sepol library is in the nonstandard
directory $SEPOL_LIB, use the following configure command:

   $ ./configure CPPFLAGS=-I$SEPOL_INCLUDE LDFLAGS=-L$SEPOL_LIB

You can run slat from within the build directory and omit the "make
install" step.

Building from the Sources in the CVS Repository
===============================================

If you check out the sources from a CVS repository, you may not have a
configure script.  In this case, precede the previous commands with
the following command.

   $ autoreconf -i

Installation Names
==================

   By default, `make install' will install the package's files in
`/usr/local/bin', `/usr/local/man', etc.  You can specify an
installation prefix other than `/usr/local' by giving `configure' the
option `--prefix=PATH'.

   You can specify separate installation prefixes for
architecture-specific files and architecture-independent files.  If you
give `configure' the option `--exec-prefix=PATH', the package will use
PATH as the prefix for installing programs and libraries.
Documentation and other data files will still use the regular prefix.

   In addition, if you use an unusual directory layout you can give
options like `--bindir=PATH' to specify different values for particular
kinds of files.  Run `configure --help' for a list of the directories
you can set and what kinds of files go in them.
