EXTRA_DIST = \
Doxyfile \
html
SRCMANDOCS =
GENMANDOCS =
dist_man_MANS = $(SRCMANDOCS) $(GENMANDOCS)
dist_doc_DATA = $(PDFFILES)
SUFFIXES = .pdf .ps .dvi .tex .xml .html
html-local: doxygen-docs
doxygen-docs:
cd $(srcdir) && $(DOXYGEN)
.xml.ps:
$(XMLTO) $(XMLTOFLAGS) ps $<
@touch $@
.xml.html:
$(XMLTO) $(XMLTOFLAGS) html-nochunks $<
@touch $@
clean-local:
rm -f *.aux *.bbl *.blg *.log *.aux.bak
distclean-local:
rm -f *.dvi *.ps *.pdf *.html $(GENMANDOCS)
.PHONY: allclean doxygen-docs
allclean: distclean