view dox/install.h @ 186:530bb7728546 include_mb_test

Move header files to $(top_srcdir)/include/ and prefixed with 'mb_'. This is the solution that I dicussed with FourDollars, last night.
author Thinker K.F. Li <thinker@branda.to>
date Wed, 05 Nov 2008 15:24:01 +0800
parents 04c81b8a5d23
children 18f8c3126cdb
line wrap: on
line source

/*! \page install How to Build and Install MadButterfly?
 *
 * Prerequisite
 * - install pmake (pmake is make of FreeBSD)
 * - install Cairo
 *
 * Get source
 * - hg clone http://hg.assembla.com/MadButterfly MadButterfly
 *
 * Build and Install
 * - cd MadButtfly
 * - ./configure
 * - make
 * - make install
 *
 * Examples
 * - cd examples/calculator
 * - make
 * - ./calc
 *
 * - cd examples/svg2code_ex
 * - make
 * - ./ex1
 *
 * - cd examples/tank
 * - make
 * - ./tank
 *
 * You can make examples with following command,
 * \code
 * make PREFIX=/path/to/some/where/
 * \endcode
 * if MadButterfly was not installed in default path, with different prefix.
 *
 * You can install MadButterfly somewhere, other than /usr/local/.
 * For example
 * \code
 * ./configure --prefix=${PWD}/dest
 * \endcode
 */