IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5366


Ignore:
Timestamp:
Oct 18, 2005, 9:16:10 AM (21 years ago)
Author:
desonia
Message:

changes from rel8 branch.

Location:
trunk/psModules
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/Makefile.am

    r5067 r5366  
    88EXTRA_DIST = Doxyfile.in psmodule-config.in psmodule.pc.in
    99
     10if DOXYGEN
     11
    1012docs: Doxyfile $(prefix)/docs/psmodule $(mandir)/man3
    11         $(DOXYGEN)
     13        doxygen Doxyfile
    1214        mv -f $(prefix)/docs/psmodule/man/man3/* $(mandir)/man3
    1315        rm -rf $(prefix)/docs/psmodule/man
     
    2426CLEANFILES = $(prefix)/docs/psmodule/*
    2527
     28endif
     29
    2630test: check
  • trunk/psModules/configure.ac

    r5323 r5366  
    4747dnl doxygen -------------------------------------------------------------------
    4848
    49 AC_PATH_PROG([DOXYGEN], [doxygen], [missing])
    50 if test "$DOXYGEN" = "missing" ; then
    51   AC_MSG_ERROR([doxygen is required])
    52 fi
    53 
    54 dnl needed by doxygen
    55 AC_PATH_PROG([PERL], [perl], [missing])
    56 if test "$PERL" = "missing" ; then
    57   AC_MSG_ERROR([perl is required])
    58 fi
     49AC_CHECK_PROG([doxygen], [doxygen], [true], [false])
     50AM_CONDITIONAL(DOXYGEN, test x$doxygen = xtrue)
    5951
    6052dnl pslib ---------------------------------------------------------------------
  • trunk/psModules/test/imsubtract/Makefile.am

    r5169 r5366  
    1111
    1212tst_pmImageSubtract_SOURCES = tst_pmImageSubtract.c
    13 tst_pmSubstractBias_SOURCES = tst_pmSubstractBias.c
    14 tst_pmSubstractSky_SOURCES = tst_pmSubstractSky.c
     13tst_pmSubtractBias_SOURCES = tst_pmSubtractBias.c
     14tst_pmSubtractSky_SOURCES = tst_pmSubtractSky.c
    1515
    1616check_PROGRAMS = $(TESTS)
Note: See TracChangeset for help on using the changeset viewer.