Merge pull request #277 from virtualtam/doxygen
Add a target to generate Doxygen documentation
This commit is contained in:
commit
456d305329
3 changed files with 2383 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -16,8 +16,9 @@ pagecache
|
||||||
composer.lock
|
composer.lock
|
||||||
/vendor/
|
/vendor/
|
||||||
|
|
||||||
# Ignore test data & output
|
# Ignore development and test resources
|
||||||
coverage
|
coverage
|
||||||
|
doxygen
|
||||||
tests/datastore.php
|
tests/datastore.php
|
||||||
tests/dummycache/
|
tests/dummycache/
|
||||||
phpmd.html
|
phpmd.html
|
||||||
|
|
5
Makefile
5
Makefile
|
@ -120,6 +120,11 @@ test:
|
||||||
clean:
|
clean:
|
||||||
@git clean -df
|
@git clean -df
|
||||||
|
|
||||||
|
### generate Doxygen documentation
|
||||||
|
doxygen: clean
|
||||||
|
@rm -rf doxygen
|
||||||
|
@( cat Doxyfile ; echo "PROJECT_NUMBER=`git describe`" ) | doxygen -
|
||||||
|
|
||||||
### update the local copy of the documentation
|
### update the local copy of the documentation
|
||||||
doc: clean
|
doc: clean
|
||||||
@rm -rf doc
|
@rm -rf doc
|
||||||
|
|
Loading…
Reference in a new issue