annotate doc/Makefile.am @ 224:5ca682ce3392

Merge branch 'master' of https://github.com/jamiebullock/LibXtract
author Sean Enderby <sean.enderby@gmail.com>
date Mon, 24 Feb 2014 13:43:13 +0000
parents 2663eac093a5
children
rev   line source
jamie@116 1 MAINTAINERCLEANFILES=Makefile.in config.log
jamie@145 2 if HAVE_DOXYGEN
jamie@2 3 CLEANFILES=doxygen-build.stamp
jamie@2 4
jamie@2 5 DOX=documentation.doxygen
jamie@2 6
jamie@2 7 INSTIMAGES=html/doxygen.png
jamie@2 8
jamie@2 9 DOC_STAMPS=html-build.stamp
jamie@2 10
jamie@2 11 DOC_DIR=$(HTML_DIR)
jamie@2 12
jamie@2 13 all-local: doxygen-build.stamp
jamie@2 14
jamie@2 15 doxygen-build.stamp: $(DOX) ../xtract/libxtract.h ../xtract/xtract_scalar.h ../xtract/xtract_vector.h
jamie@2 16 @echo '*** Running doxygen ***'
jamie@2 17 doxygen $(DOX)
jamie@2 18 touch doxygen-build.stamp
jamie@2 19
jamie@2 20 clean-local:
jamie@2 21 rm -f *~ *.bak $(DOC_STAMPS) || true
jamie@2 22 if test -d html; then rm -fr html; fi
jamie@2 23 if test -d latex; then rm -fr latex; fi
jamie@2 24 if test -d man; then rm -fr man; fi
jamie@2 25
jamie@2 26 distclean-local: clean
jamie@2 27 rm -f *.stamp || true
jamie@2 28 if test -d html; then rm -rf html; fi
jamie@2 29
jamie@145 30 endif