Distributed File System written in C

docs: Shove stuff into the docs directory

WARNING: There is a GitHub repo in there: https://github.com/sona-tau/dfs-docs

Changed files
+5 -4
+3 -3
Doxyfile
··· 74 74 # entered, it will be relative to the location where Doxygen was started. If 75 75 # left blank the current directory will be used. 76 76 77 - OUTPUT_DIRECTORY = .build 77 + OUTPUT_DIRECTORY = docs 78 78 79 79 # If the CREATE_SUBDIRS tag is set to YES then Doxygen will create up to 4096 80 80 # sub-directories (in 2 levels) under the output directory of each output format ··· 1348 1348 # The default directory is: html. 1349 1349 # This tag requires that the tag GENERATE_HTML is set to YES. 1350 1350 1351 - HTML_OUTPUT = html 1351 + HTML_OUTPUT = . 1352 1352 1353 1353 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each 1354 1354 # generated HTML page (for example: .htm, .php, .asp). ··· 2021 2021 # If the GENERATE_LATEX tag is set to YES, Doxygen will generate LaTeX output. 2022 2022 # The default value is: YES. 2023 2023 2024 - GENERATE_LATEX = YES 2024 + GENERATE_LATEX = NO 2025 2025 2026 2026 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a 2027 2027 # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+2 -1
Makefile
··· 22 22 clean: 23 23 rm -rf $(BUILD) 24 24 25 - docs: $(BUILD) 25 + docs: 26 + mkdir -p docs 26 27 doxygen Doxyfile 27 28 28 29 .PHONY: all clean