blob: 57a8325ad3820cf852570ca924e16e0e740d3a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
CLEANFILES = *.pdf
clean-local:
rm -rf doxygen
doxygen: doxygen.conf $(DOXYGEN_DEPS)
@if test -n "$(DOXYGEN)"; then \
$(DOXYGEN) $<; \
else \
echo "You need doxygen installed to build the docs."; \
fi;
doxygen-pdf: doxygen doxygen.pdf
doxygen.pdf: doxygen
(cd doxygen/latex && make refman.pdf) && cp doxygen/latex/refman.pdf doxygen.pdf
.PHONY: doxygen-pdf
|