[go: up one dir, main page]

Menu

Tree [r5] / trunk / ltilib / linux /
 History

HTTPS access


File Date Author Commit
 g++ 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 workbench 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 Makefile.cvs 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 Makefile.in 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 README 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 acinclude.m4 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 configure.in 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 install-sh 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 lti-config.in 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 lti-local-config.in 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)
 mkinstalldirs 2003-03-14 alvarado [r5] Initial import. Release LTI-Lib Lithium (v. 1.9.0)

Read Me

****************************************************************************
*                                                                          *
* LTI-Lib, Computer Vision Library                                         *
* README File for Linux Users                                              *
*                                                                          *
****************************************************************************

1. How to compile

   To create the configure script you need to do the following:

      make -f Makefile.cvs

   After that, you can create your Makefile with

      ./configure

   To compile the library you will need

      make

   and to install it at the configured place, you'll need

      make install


2. Files found here

   This directory contains following files:

   README        : this file

   workbench/    : all files here will be compiled and linked to the
                   test program (make tester and make rtester).

   g++           : some standard files required by gcc 2.95.x

   aclocal.m4    : macros for autoconf
   acinclude.m4  : macros for autoconf

   Makefile.in   : the template for the Makefile

   mkinstalldirs : file required by autoconf
   install-sh    : file required by autoconf

   lti-config.in : template file for lti-config, which is required
	           to simplify the use of the lti-lib.
   lti-local-config.in : template file for lti-local-config, which is
                         used to compile the examples.
 

3. Files created here

   After calling  configure, you will also find here

   Makefile      : necessary to create the libraries and test programs.
                   Useful targets are:
                     clean:   remove all object files
                     tester:  create a tester program (in ../bin/tester)
                              with all debug information
                     rtester: create a tester program (in ../bin/rtester)
                              with speed optimizations and without debug
                              information.
                     ptester: similar to tester, but including
                              profiling information.
                     doxydoc: create the sources documentation with doxygen
                              results in ../doc/html, ../doc/latex and so on.

   Dependencies : file required in the Makefile, which contains the
                  dependencies of all components in the LTI-Lib.
                  To create it use "make dep".
                  If there is some error in the dependencies, delete
                  the file, and create a new empty one (for example
                  with "touch Dependencies".  After that use
                  "make dep"