Doxygen: ignore data/, simplify Make target

Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
VirtualTam 2018-02-23 00:37:03 +01:00
parent b9c6589363
commit ba2cff1549
2 changed files with 3 additions and 2 deletions

View file

@ -804,6 +804,7 @@ RECURSIVE = YES
# run. # run.
EXCLUDE = vendor \ EXCLUDE = vendor \
data \
tpl \ tpl \
inc \ inc \
doc \ doc \

View file

@ -192,7 +192,7 @@ authors:
### generate Doxygen documentation ### generate Doxygen documentation
doxygen: clean doxygen: clean
@rm -rf doxygen @rm -rf doxygen
@( cat Doxyfile ; echo "PROJECT_NUMBER=`git describe`" ) | doxygen - @doxygen Doxyfile
### generate HTML documentation from Markdown pages with MkDocs ### generate HTML documentation from Markdown pages with MkDocs
htmldoc: htmldoc:
@ -206,4 +206,4 @@ htmldoc:
### Generate Shaarli's translation compiled file (.mo) ### Generate Shaarli's translation compiled file (.mo)
translate: translate:
@find inc/languages/ -name shaarli.po -execdir msgfmt shaarli.po -o shaarli.mo \; @find inc/languages/ -name shaarli.po -execdir msgfmt shaarli.po -o shaarli.mo \;