From 858ef9408cb4ae4c50b4deeadf3aedb9f1e8db70 Mon Sep 17 00:00:00 2001 From: oreo639 <31916379+Oreo639@users.noreply.github.com> Date: Fri, 5 Feb 2021 11:12:31 -0800 Subject: [PATCH] Generate tagfile for use with c3d documentation --- libctru/.gitignore | 1 + libctru/Doxyfile | 2 +- libctru/Makefile | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libctru/.gitignore b/libctru/.gitignore index 994a7e1..6588131 100644 --- a/libctru/.gitignore +++ b/libctru/.gitignore @@ -7,3 +7,4 @@ docs internal_docs *.bz2 .*/ +*.tag diff --git a/libctru/Doxyfile b/libctru/Doxyfile index c6bf7bb..ccd183c 100644 --- a/libctru/Doxyfile +++ b/libctru/Doxyfile @@ -2067,7 +2067,7 @@ TAGFILES = # tag file that is based on the input files it reads. See section "Linking to # external documentation" for more information about the usage of tag files. -GENERATE_TAGFILE = +GENERATE_TAGFILE = libctru.tag # If the ALLEXTERNALS tag is set to YES, all external class will be listed in # the class index. If set to NO, only the inherited external classes will be diff --git a/libctru/Makefile b/libctru/Makefile index 7c54c78..925b955 100644 --- a/libctru/Makefile +++ b/libctru/Makefile @@ -145,7 +145,7 @@ lib/libctrud.a : lib debug $(SOURCES) $(INCLUDES) #--------------------------------------------------------------------------------- clean: @echo clean ... - @rm -fr release debug lib docs + @rm -fr release debug lib docs libctru.tag #--------------------------------------------------------------------------------- else