Changeset 918

Show
Ignore:
Timestamp:
09/11/06 01:00:33
Author:
pvanhoof
Message:

Improved the build docs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r917 r918  
    55        * Improved the documentation generation 
    66        * Small fixes for the signals of above types 
    7  
     7        * From now on will --enable-gtk-doc require --enable-tests too 
     8         
    892006-09-08  Philip Van Hoof <pvanhoof@gnome.org> 
    910 
  • trunk/Makefile.am

    r876 r918  
    2020endif 
    2121 
    22 SUBDIRS += docs bindings po tests  
     22SUBDIRS += tests bindings po  
     23 
     24#### Funny OR simulation :) 
     25if BUILD_TESTS 
     26if !BUILD_UNITTESTS 
     27SUBDIRS += docs  
     28endif 
     29endif 
     30 
     31if BUILD_UNITTESTS 
     32if !BUILD_TESTS 
     33SUBDIRS += docs  
     34endif 
     35endif 
     36 
     37if BUILD_UNITTESTS 
     38if BUILD_TESTS 
     39SUBDIRS += docs  
     40endif 
     41endif 
     42### 
     43 
    2344 
    2445if BUILD_UNITTESTS 
  • trunk/README

    r691 r918  
    44Project tinymail is an attempt to create an E-mail client framework for small 
    55devices. 
     6 
     7Documentation 
     8============= 
     9 
     10Online : 
     11 
     12API reference manual per API version: http://tinymail.org/API/ 
     13Development website and info: http://tinymail.org/trac/tinymail 
     14Marketing documentation & contact: http://tinymail.org 
     15 
     16To generate the API documentation yourself: 
     17 
     18./autogen.sh --enable-gtk-doc --enable-tests && make 
     19./autogen.sh --enable-doxygen && make 
     20 
     21Your documentation will be generated in docs/devel/reference and  
     22docs/devel/doxygen. Tinymail being glib/gobject based will give you the best  
     23results when using gtk-doc for API documentation generation. 
    624 
    725Development tips