]> git.ameliathe1st.gay Git - voyage-au-centre-des-fichiers.git/commitdiff
Changed the name of the doxygen output folder from docs to doxyfile
authorAmelia Coutard <eliottulio.coutard@gmail.com>
Fri, 27 May 2022 00:20:44 +0000 (02:20 +0200)
committerAmelia Coutard <eliottulio.coutard@gmail.com>
Fri, 27 May 2022 00:20:44 +0000 (02:20 +0200)
Doxyfile
Makefile

index b76e594a8153f9f48466739a89902c43a8fe7488..42a4c6cbf27a42a07fd873160037a6cfec3949b2 100644 (file)
--- a/Doxyfile
+++ b/Doxyfile
@@ -58,7 +58,7 @@ PROJECT_LOGO           =
 # entered, it will be relative to the location where doxygen was started. If
 # left blank the current directory will be used.
 
-OUTPUT_DIRECTORY       = docs
+OUTPUT_DIRECTORY       = doxygen
 
 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
 # directories (in 2 levels) under the output directory of each output format and
index 634ec2f8ab068f4565a7dba246bea115ea5370a4..2bddfe0e42f9113d980763adf9c3dc0bca26ce79 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,7 @@ CRTN_OBJ := $(OUT_DIR)crtn.S.o
 
 build: $(OUT_DIR)amycros.iso
 docs:
-       -rm -r docs
+       -rm -r doxygen
        doxygen
 qemu: build
        qemu-system-x86_64 -cdrom $(OUT_DIR)amycros.iso -serial stdio -cpu qemu64,pdpe1gb $(QEMUFLAGS)
@@ -38,7 +38,7 @@ $(OUT_DIR)amycros.iso: $(OUT_DIR)kernel.elf64 grub.cfg
        grub-mkrescue -o "$@" isodir
 
 clean:
-       -rm -rf $(OUT_DIR) $(DEPS_DIR) docs isodir
+       -rm -rf $(DEPS_DIR) doxygen $(OUT_DIR) isodir
 
 
 $(OUT_DIR)kernel.elf64: $(OBJECTS) $(CRTI_OBJ) $(CRTBEGIN_OBJ) $(CRTEND_OBJ) $(CRTN_OBJ) linker.ld