Changeset 918
- Timestamp:
- 09/11/06 01:00:33
- Files:
-
- trunk/ChangeLog (modified) (1 diff)
- trunk/Makefile.am (modified) (1 diff)
- trunk/README (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ChangeLog
r917 r918 5 5 * Improved the documentation generation 6 6 * Small fixes for the signals of above types 7 7 * From now on will --enable-gtk-doc require --enable-tests too 8 8 9 2006-09-08 Philip Van Hoof <pvanhoof@gnome.org> 9 10 trunk/Makefile.am
r876 r918 20 20 endif 21 21 22 SUBDIRS += docs bindings po tests 22 SUBDIRS += tests bindings po 23 24 #### Funny OR simulation :) 25 if BUILD_TESTS 26 if !BUILD_UNITTESTS 27 SUBDIRS += docs 28 endif 29 endif 30 31 if BUILD_UNITTESTS 32 if !BUILD_TESTS 33 SUBDIRS += docs 34 endif 35 endif 36 37 if BUILD_UNITTESTS 38 if BUILD_TESTS 39 SUBDIRS += docs 40 endif 41 endif 42 ### 43 23 44 24 45 if BUILD_UNITTESTS trunk/README
r691 r918 4 4 Project tinymail is an attempt to create an E-mail client framework for small 5 5 devices. 6 7 Documentation 8 ============= 9 10 Online : 11 12 API reference manual per API version: http://tinymail.org/API/ 13 Development website and info: http://tinymail.org/trac/tinymail 14 Marketing documentation & contact: http://tinymail.org 15 16 To generate the API documentation yourself: 17 18 ./autogen.sh --enable-gtk-doc --enable-tests && make 19 ./autogen.sh --enable-doxygen && make 20 21 Your documentation will be generated in docs/devel/reference and 22 docs/devel/doxygen. Tinymail being glib/gobject based will give you the best 23 results when using gtk-doc for API documentation generation. 6 24 7 25 Development tips
