Generate doxygen doc in doc/doxygen with make

This commit is contained in:
Thomas Bernard
2018-07-12 13:04:29 +02:00
parent 244e856e9f
commit 65564d653f
4 changed files with 33 additions and 7 deletions

View File

@@ -642,7 +642,7 @@ endif
### And now for the real build rules ###
.PHONY : all debug release clean depend force install uninstall valgrind
.PHONY : all debug release clean depend force install uninstall valgrind doc doxygen
# This is the list of the objects we want to build. Dependancies are built by "make depend" automatically.
OBJS = main.o init.o graph.o $(APIOBJ) misc.o special.o \
@@ -967,4 +967,9 @@ endif
valgrind: $(BIN)
valgrind --suppressions=../valgrind.grafx2.suppr --leak-check=full --show-leak-kinds=all --num-callers=20 $(BIN)
doc: doxygen
doxygen:
$(MAKE) -C ../tools doxygen
-include Makefile.dep