Changeset 49 for trunk/configure.ac

Show
Ignore:
Timestamp:
04/13/06 05:47:01 (3 years ago)
Author:
jordi
Message:

Added the doxygen documentation builder file in the "doc" directory. I've also wirtten the missing documentation for all files in "src", but not in "src/gtk" a it would be redundant.

Also I've been paranoic on spelling (I'm a very bad spelled) and spell checked all source files, changing some string. Updated the translations.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r40 r49  
    66AM_INIT_AUTOMAKE 
    77AM_MAINTAINER_MODE 
     8 
     9dnl Parameters. 
     10AC_ARG_ENABLE([debug], [  --enable-debug          turn on debugging [[default=no]]]) 
     11if test "x$enable_debug" != "xyes"; then 
     12    DEBUGFLAGS="-DNDEBUG -DG_DISABLE_ASSERT" 
     13else 
     14    DEBUGFLAGS="-DDEBUG" 
     15fi 
     16CFLAGS="$CFLAGS -Wall -pedantic $DEBUGFLAGS" 
     17CXXFLAGS="$CXXFLAGS -Wall -pedantic -Wno-long-long $DEBUGFLAGS" 
    818 
    919dnl Check for programs. 
     
    5161src/gtk/Makefile    \ 
    5262tests/Makefile  \ 
    53 doc/Makefile]) 
     63doc/Makefile    \ 
     64doc/Doxyfile]) 
    5465AC_OUTPUT