mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Added doxygen documentation definition file and make target for it (nw)
This commit is contained in:
parent
54e5245846
commit
f2b21a51f8
3 changed files with 2394 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -4,6 +4,7 @@
|
|||
!/.gitattributes
|
||||
!/.gitignore
|
||||
!/makefile
|
||||
!/mame.doxygen
|
||||
!/*.md
|
||||
/cfg
|
||||
/diff
|
||||
|
@ -17,4 +18,5 @@ src/regtests/chdman/temp
|
|||
src/regtests/jedutil/output
|
||||
/sta
|
||||
*.pyc
|
||||
/build
|
||||
/build
|
||||
/documentation
|
10
makefile
10
makefile
|
@ -1010,3 +1010,13 @@ else
|
|||
$(shell find src/ -name *.inc -exec ./srcclean {} >&2 ;)
|
||||
$(shell find hash/ -name *.xml -exec ./srcclean {} >&2 ;)
|
||||
endif
|
||||
|
||||
#-------------------------------------------------
|
||||
# Doxygen documentation
|
||||
#-------------------------------------------------
|
||||
|
||||
.PHONY: doxygen
|
||||
|
||||
doxygen:
|
||||
@echo Generate Doxygen documentation
|
||||
doxygen mame.doxygen
|
||||
|
|
2381
mame.doxygen
Normal file
2381
mame.doxygen
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue