Mercurial > hg > libxtract
annotate doc/Makefile.am @ 104:a32738e9d955
- Fixes to descriptors.c where no break statement was given for certain cases is switch conditionals
- Added LPC and LPCC extraction functions. LPC implements Durbin method as described in Rabiner and Juang and implemented in Dr. Dobbs 1994 edition by Jutta Degener
author | Jamie Bullock <jamie@postlude.co.uk> |
---|---|
date | Mon, 24 Dec 2007 13:21:13 +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 |