IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 28, 2005, 3:43:13 PM (21 years ago)
Author:
jhoblitt
Message:

add doxygen support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/configure.ac

    r4653 r4654  
    11dnl Copyright (C) 2005  Joshua Hoblitt
    22dnl
    3 dnl $Id: configure.ac,v 1.8 2005-07-29 01:20:51 jhoblitt Exp $
     3dnl $Id: configure.ac,v 1.9 2005-07-29 01:43:13 jhoblitt Exp $
    44
    55AC_PREREQ(2.59)
     
    1717AC_PROG_LIBTOOL
    1818
     19AC_PATH_PROG([DOXYGEN], [doxygen], [missing])
     20if test "$DOXYGEN" = "missing" ; then
     21  AC_MSG_ERROR([doxygen is required])
     22fi
     23
     24dnl needed by doxygen
     25AC_PATH_PROG([PERL], [perl], [missing])
     26if test "$PERL" = "missing" ; then
     27  AC_MSG_ERROR([perl is required])
     28fi
     29
    1930AM_CFLAGS="-Wall -pedantic -std=c99 -fno-strict-aliasing"
    2031AC_SUBST([AM_CFLAGS])
     
    2334  Makefile
    2435  nebclient.pc
     36  Doxyfile
    2537  src/Makefile
    2638  tests/Makefile
Note: See TracChangeset for help on using the changeset viewer.