Ajoute règles Makefile pour générer la doc doxygen

This commit is contained in:
Yann Caumartin
2017-01-25 22:41:34 +01:00
parent c6506ff628
commit 1dbdf2995b
9 changed files with 63 additions and 19 deletions

@ -21,11 +21,20 @@ $(OBJ)/%.o: %.c
-include $(DEP)/*.d
.PHONY: debug clean mrproper
.PHONY: debug clean mrproper doc doc-config clean-doc
debug:
make DEBUG=1
doc:
make doc -C ..
doc-config:
make doc-config -C ..
clean-doc:
make clean-doc -C ..
clean:
make clean -C ..