annotate doc/Makefile.am @ 85:89b516adb5df

Checked ANSI C89 compliance (basically a few ifndefs for the C99 math functions: powf, roundf etc). Added a few PD examples/tests.
author Jamie Bullock <jamie@postlude.co.uk>
date Mon, 03 Sep 2007 14:31:58 +0000
parents 819937ea6359
children 859495925633
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@2 3 MAINTAINERCLEANFILES=Makefile.in
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 EXTRA_DIST=
jamie@2 10
jamie@2 11 INSTIMAGES=html/doxygen.png
jamie@2 12
jamie@2 13 DOC_STAMPS=html-build.stamp
jamie@2 14
jamie@2 15 DOC_DIR=$(HTML_DIR)
jamie@2 16
jamie@2 17 all-local: doxygen-build.stamp
jamie@2 18
jamie@2 19 doxygen-build.stamp: $(DOX) ../xtract/libxtract.h ../xtract/xtract_scalar.h ../xtract/xtract_vector.h
jamie@2 20 @echo '*** Running doxygen ***'
jamie@2 21 doxygen $(DOX)
jamie@2 22 touch doxygen-build.stamp
jamie@2 23
jamie@2 24 clean-local:
jamie@2 25 rm -f *~ *.bak $(DOC_STAMPS) || true
jamie@2 26 if test -d html; then rm -fr html; fi
jamie@2 27 if test -d latex; then rm -fr latex; fi
jamie@2 28 if test -d man; then rm -fr man; fi
jamie@2 29
jamie@2 30 distclean-local: clean
jamie@2 31 rm -f *.stamp || true
jamie@2 32 if test -d html; then rm -rf html; fi
jamie@2 33