diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-03-30 16:38:30 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-03-30 16:38:30 +0200 |
| commit | 40ed37c023627726a5c9c6928284e9f042dc0fa4 (patch) | |
| tree | 19dd1faac1ee4ea1bab92b519ea150547356fd90 /Makefile | |
| parent | 8bba48a8326d9e7a703c3f6f6ab70b8a8a393473 (diff) | |
| download | libft-40ed37c023627726a5c9c6928284e9f042dc0fa4.tar.gz libft-40ed37c023627726a5c9c6928284e9f042dc0fa4.tar.bz2 libft-40ed37c023627726a5c9c6928284e9f042dc0fa4.zip | |
Added Doxygen config file
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -15,12 +15,15 @@ RM = rm -f NORM = norminette MAKE = make MAKE_ARGS = --no-print-directory +DOXYGEN = doxygen +DOXYGEN_FILE = Doxyfile SRC_DIR = src INCLUDE_DIR = include OBJ_DIR = obj SCRIPT_DIR = script TEST_DIR = test +DOC_DIR = doc INCLUDE_DIR = include @@ -77,3 +80,9 @@ fclean: clean @$(RM) $(NAME) re: fclean all + +doc: + $(DOXYGEN) $(DOXYGEN_FILE) + +doc_clean: + $(RM) -r $(DOC_DIR) |
