From 8ac5c4c0033d928927c788cc3c1eaa170aad72a0 Mon Sep 17 00:00:00 2001 From: Amelia Coutard Date: Fri, 27 May 2022 02:20:44 +0200 Subject: [PATCH] Changed the name of the doxygen output folder from docs to doxyfile --- Doxyfile | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Doxyfile b/Doxyfile index b76e594..42a4c6c 100644 --- 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 diff --git a/Makefile b/Makefile index 634ec2f..2bddfe0 100644 --- 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 -- 2.47.0