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
/vendor/
# Ignore test data & output
# Ignore development and test resources
coverage
doxygen
tests/datastore.php
tests/dummycache/
phpmd.html

2376
Doxyfile Normal file

File diff suppressed because it is too large Load Diff

View File

@ -120,6 +120,11 @@ test:
clean:
@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
doc: clean
@rm -rf doc