From 74787eefa2ac85d85b484d0ca5dffc6a2a13331d Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 30 Mar 2020 16:41:54 +0200 Subject: Added Doxyfile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1e80b4e..fb00518 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,9 @@ RM = rm -f MAKE = make +DOXYGEN = doxygen +DOXYGEN_FILE = Doxyfile +DOC_DIR = doc TESTEXEC = test.sh @@ -81,3 +84,9 @@ libft_clean: .PHONY: libft_fclean libft_fclean: $(MAKE) -C $(LIBFTDIR) fclean + +doc: + $(DOXYGEN) $(DOXYGEN_FILE) + +doc_clean: + $(RM) -r $(DOC_DIR) -- cgit