IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4654


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

add doxygen support

Location:
trunk/Nebulous/nebclient
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous/nebclient/Makefile.am

    r4653 r4654  
    11# Copyright (C) 2005  Joshua Hoblitt
    22#
    3 # $Id: Makefile.am,v 1.8 2005-07-29 01:20:51 jhoblitt Exp $
     3# $Id: Makefile.am,v 1.9 2005-07-29 01:43:13 jhoblitt Exp $
    44
    55SUBDIRS = src tests
     
    99
    1010EXTRA_DIST = nebulous.wsdl
     11
     12man_MANS = \
     13    $(top_builddir)/docs/man/man3/@PACKAGE@.3
     14
     15docs/man/man3/@PACKAGE@.3
     16        $(DOXYGEN)
     17
     18clean-local:
     19        -rm -rf docs
  • 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.