Merge pull request #277 from virtualtam/doxygen

Add a target to generate Doxygen documentation
This commit is contained in:
VirtualTam 2015-11-22 21:01:02 +01:00
commit 456d305329
3 changed files with 2383 additions and 1 deletions

3
.gitignore vendored
View file

@ -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

2376
Doxyfile Normal file

File diff suppressed because it is too large Load diff

View file

@ -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