Added target for document generation with doxygen and introduced .PHONY

directive
This commit is contained in:
Kranklyboy 2018-07-23 22:56:15 -04:00
parent 6b8e004c8b
commit 18c9c94a3e

View File

@ -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