Fix doxygen prerequisites

master
Moritz 'Morty' Strübe 2014-11-18 17:34:41 +01:00
parent eb0676212c
commit d16348482e
1 changed files with 6 additions and 5 deletions

View File

@ -23,22 +23,23 @@ endif
.PHONY: clean html pdf upload
html: init doxygen
html: init doxygen.log
pdf: doclatex = YES
pdf: init doxygen
pdf: init doxygen.log
gmake -C latex refman.pdf
init:
@echo "> Scanning files"
# This target requires and graphviz and doxygen
doxygen: docdirs = $(foreach dir,$(basedirs),${shell find ../${dir} -type d -not -path "*/.*" -not -path "*/obj_*"})
doxygen: docsrc = $(docdirs) $(foreach dir,$(docdirs),${shell find $(dir) -type f $(filetypes)}) $(manuals)
doxygen:
doxygen.log: docdirs = $(foreach dir,$(basedirs),${shell find ../${dir} -type d -not -path "*/.*" -not -path "*/obj_*"})
doxygen.log: docsrc = $(docdirs) $(foreach dir,$(docdirs),${shell find $(dir) -type f $(filetypes)}) $(manuals)
doxygen.log:
@doxygen Doxyfile
@echo "Done, errorlog follows:"
@echo ""
@touch doxygen.log
@cat "doxygen.log"
clean: