From 18c9c94a3e1834f64bd067ec401e6c66fc84f6c8 Mon Sep 17 00:00:00 2001 From: Kranklyboy Date: Mon, 23 Jul 2018 22:56:15 -0400 Subject: [PATCH] Added target for document generation with doxygen and introduced .PHONY directive --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 3dfbfcd..1d7a212 100644 --- a/Makefile +++ b/Makefile @@ -15,5 +15,11 @@ myexpand: myexpand.o %.o: %.c $(CC) $(CFLAGS) $^ +.PHONY docs: Doxyfile myexpand.c + doxygen Doxyfile + +.PHONY docs_clean: + rm -rf html + .PHONY clean: rm -f myexpand.o myexpand