Doxygen: ignore data/, simplify Make target
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
This commit is contained in:
parent
b9c6589363
commit
ba2cff1549
2 changed files with 3 additions and 2 deletions
1
Doxyfile
1
Doxyfile
|
@ -804,6 +804,7 @@ RECURSIVE = YES
|
||||||
# run.
|
# run.
|
||||||
|
|
||||||
EXCLUDE = vendor \
|
EXCLUDE = vendor \
|
||||||
|
data \
|
||||||
tpl \
|
tpl \
|
||||||
inc \
|
inc \
|
||||||
doc \
|
doc \
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -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 \;
|
||||||
|
|
Loading…
Reference in a new issue