diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | doxygen/config | 4 | ||||
-rw-r--r-- | doxygen/mainpage.dox | 19 |
3 files changed, 22 insertions, 3 deletions
@@ -23,7 +23,7 @@ readme: $(README_HTML); doc: document; clean_space: - find $(TEMPLATE_DIRS) Makefile $(README) readme_generate.py -type f | while read -r f; do \ + find $(TEMPLATE_DIRS) Makefile $(README) doxygen/pages.dox readme_generate.py -type f | while read -r f; do \ cat "$$f" | sed -e 's/[\t ]*$$//g' > tmp_file.$$$$; \ cat tmp_file.$$$$ > "$$f"; \ done; \ diff --git a/doxygen/config b/doxygen/config index 1c0a2c1..6a16fc6 100644 --- a/doxygen/config +++ b/doxygen/config @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "Templates -- Meow" -PROJECT_NUMBER = 1.2.5 +PROJECT_NUMBER = 1.2.6 PROJECT_BRIEF = "A C++ template contains kinds of interesting classes and functions" PROJECT_LOGO = $(config_path)/logo.png OUTPUT_DIRECTORY = doc @@ -103,7 +103,7 @@ WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -INPUT = meowpp +INPUT = meowpp $(config_path)/pages.dox INPUT_ENCODING = UTF-8 FILE_PATTERNS = RECURSIVE = YES diff --git a/doxygen/mainpage.dox b/doxygen/mainpage.dox new file mode 100644 index 0000000..f74794b --- /dev/null +++ b/doxygen/mainpage.dox @@ -0,0 +1,19 @@ +/*! + * @mainpage Meow's Main Page~~ + * @section intro Introduction + * blablabla + * + * @section links Links + * - GitHub: <a href='https://github.com/cathook/meow'> + * https://github.com/cathook/meow</a> + * - Mirror: <a href='http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow'> + * http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow</a> + * - Readme: <a href='http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow/README.html'> + * http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow/README.html'</a> + * - document: <a href='http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow/doc/html/index.html'> + * http://www.csie.ntu.edu.tw/~b01902109/mirrors/meow/doc/html/index.html</a> + * + * @section authors Authors + * - cathook: cat.hook31894 <<<>>> gmail.com + * - cat_leopard: b01902109 ???!!! csie.ntu.edu.tw + */ |