jamie@2: ## Process this file with automake to produce Makefile.in jamie@2: #Stolen from Steve Harris' liblo, thanks Steve! jamie@2: MAINTAINERCLEANFILES=Makefile.in jamie@2: jamie@2: CLEANFILES=doxygen-build.stamp jamie@2: jamie@2: DOX=documentation.doxygen jamie@2: jamie@2: EXTRA_DIST= jamie@2: jamie@2: INSTIMAGES=html/doxygen.png jamie@2: jamie@2: DOC_STAMPS=html-build.stamp jamie@2: jamie@2: DOC_DIR=$(HTML_DIR) jamie@2: jamie@2: all-local: doxygen-build.stamp jamie@2: jamie@2: doxygen-build.stamp: $(DOX) ../xtract/libxtract.h ../xtract/xtract_scalar.h ../xtract/xtract_vector.h jamie@2: @echo '*** Running doxygen ***' jamie@2: doxygen $(DOX) jamie@2: touch doxygen-build.stamp jamie@2: jamie@2: clean-local: jamie@2: rm -f *~ *.bak $(DOC_STAMPS) || true jamie@2: if test -d html; then rm -fr html; fi jamie@2: if test -d latex; then rm -fr latex; fi jamie@2: if test -d man; then rm -fr man; fi jamie@2: jamie@2: distclean-local: clean jamie@2: rm -f *.stamp || true jamie@2: if test -d html; then rm -rf html; fi jamie@2: