Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3558 in orxonox.OLD for orxonox/trunk/configure.ac


Ignore:
Timestamp:
Mar 15, 2005, 12:08:27 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: now the documentation only gets build if requested either by the configure skript via: ./configure —enable-ducumentation, or by building in trunk: make doc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/configure.ac

    r3549 r3558  
    139139  echo "no"
    140140fi
     141
    141142#-------------------#
    142143# SubProject-enable #
     
    155156AM_CONDITIONAL(SUB_PROJECTS, test x$def_sub_projects = xyes)
    156157
     158#----------------------#
     159# Documentation-enable #
     160#----------------------#
     161def_documentation=no
     162AC_MSG_CHECKING([if the Documentation should be build by default])
     163AC_ARG_ENABLE([documentation],
     164        AC_HELP_STRING( [--enable-documentation],
     165        [also builds the sDocumentation while make from srcdir]), [def_documentation=yes])
     166if test x$def_documentation = xyes; then
     167  echo "yes"
     168fi
     169if test x$def_documentation = xno; then
     170  echo "no"
     171fi
     172AM_CONDITIONAL(DOCUMENTATION, test x$def_documentation = xyes)
    157173#######################
    158174## PROGRAMM CHECKING ##
Note: See TracChangeset for help on using the changeset viewer.