00001 /*! \page install How to Build and Install MadButterfly? 00002 * 00003 * Prerequisite 00004 * - autotools 00005 * - autoconf 00006 * - automake 00007 * - libtools 00008 * - install Cairo 00009 * 00010 * Get source 00011 * - hg clone http://hg.assembla.com/MadButterfly MadButterfly 00012 * 00013 * Build and Install 00014 * - cd MadButtfly 00015 * - ./autogen.sh 00016 * - ./configure 00017 * - make 00018 * - make install 00019 * 00020 * Examples 00021 * - cd examples/calculator 00022 * - make 00023 * - ./calc 00024 * 00025 * - cd examples/svg2code_ex 00026 * - make 00027 * - ./ex1 00028 * 00029 * - cd examples/tank 00030 * - make 00031 * - ./tank 00032 * 00033 * You can make examples with following command, 00034 * \code 00035 * make PREFIX=/path/to/some/where/ 00036 * \endcode 00037 * if MadButterfly was not installed in default path, with different prefix. 00038 * 00039 * You can install MadButterfly somewhere, other than /usr/local/. 00040 * For example 00041 * \code 00042 * ./configure --prefix=${PWD}/dest 00043 * \endcode 00044 */