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
|
||||
/vendor/
|
||||
|
||||
# Ignore test data & output
|
||||
# Ignore development and test resources
|
||||
coverage
|
||||
doxygen
|
||||
tests/datastore.php
|
||||
tests/dummycache/
|
||||
phpmd.html
|
||||
|
|
5
Makefile
5
Makefile
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue