annotate doc/Makefile.am @ 133:15bc88384ecd

Java SWIG bindings improvements
author Jamie Bullock <jamie@postlude.co.uk>
date Wed, 13 Jun 2012 15:08:11 +0100
parents efb1c1ae2ba8
children 2663eac093a5
rev   line source
jamie@2 1 ## Process this file with automake to produce Makefile.in
jamie@2 2 #Stolen from Steve Harris' liblo, thanks Steve!
jamie@116 3 MAINTAINERCLEANFILES=Makefile.in config.log
jamie@2 4
jamie@2 5 CLEANFILES=doxygen-build.stamp
jamie@2 6
jamie@2 7 DOX=documentation.doxygen
jamie@2 8
jamie@2 9 INSTIMAGES=html/doxygen.png
jamie@2 10
jamie@2 11 DOC_STAMPS=html-build.stamp
jamie@2 12
jamie@2 13 DOC_DIR=$(HTML_DIR)
jamie@2 14
jamie@2 15 all-local: doxygen-build.stamp
jamie@2 16
jamie@2 17 doxygen-build.stamp: $(DOX) ../xtract/libxtract.h ../xtract/xtract_scalar.h ../xtract/xtract_vector.h
jamie@2 18 @echo '*** Running doxygen ***'
jamie@2 19 doxygen $(DOX)
jamie@2 20 touch doxygen-build.stamp
jamie@2 21
jamie@2 22 clean-local:
jamie@2 23 rm -f *~ *.bak $(DOC_STAMPS) || true
jamie@2 24 if test -d html; then rm -fr html; fi
jamie@2 25 if test -d latex; then rm -fr latex; fi
jamie@2 26 if test -d man; then rm -fr man; fi
jamie@2 27
jamie@2 28 distclean-local: clean
jamie@2 29 rm -f *.stamp || true
jamie@2 30 if test -d html; then rm -rf html; fi
jamie@2 31