Initial commit

This commit is contained in:
2026-02-02 04:50:13 +01:00
commit 5b11698731
22592 changed files with 7677434 additions and 0 deletions

14
doc/module.mk Normal file
View File

@@ -0,0 +1,14 @@
DOXYGEN_OUTPUT_DIRECTORY := html
export DOXYGEN_OUTPUT_DIRECTORY
doxygen:
@echo "Generating reference documentation in $(srcdir)/doc/doxygen/${DOXYGEN_OUTPUT_DIRECTORY}..."
@cd $(srcdir)/doc/doxygen ; doxygen scummvm.doxyfile
clean-doxygen:
rm -rf $(srcdir)/doc/doxygen/html
rm -f $(srcdir)/doc/doxygen/doxygen_warnings.txt
doc: doxygen
clean-doc: clean-doxygen