INSTALLATION OVERVIEW
=====================

Once libnjb is built and installed, you will have the following files:

   /usr/local/lib/libnjb.a	Static C library
   /usr/local/include/libnjb.h	C header file for libnjb API

Sample programs will be built in the "sample" directory, and should
help you get used to using the libnjb API, as well as provide some
immediate gratification.


OS-SPECIFIC NOTES
=================

FreeBSD without libusb support (recommended)
------------------------------

   % ./configure
   % make
   % make install

FreeBSD with libusb support (will require effort)
---------------------------

   % ./configure --enable-libusb=/usr/local/lib/libusb.a --with-libusb-include=/usr/local/include 
   % make
   % make install

(note that you should replace /usr/local/lib with your path to libusb.a)

Linux
-----

   % ./configure
   % make
   % make install

You need to have libusb installed on your system, and libusb requires that
you have the usbdevfs filesystem mounted.  If you don't know how to do this,
see http://www.linux-usb.org/FAQ.html#gs3


