summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-10-01 19:57:15 +0200
committerHaru <haru@dotalux.com>2016-10-02 17:26:07 +0200
commitfad2325ed62ed8a3f7c09635415f096b680d34f9 (patch)
treec8cdfbc14b6472f8eaa59540ffc1cfec62c4a97a /Makefile.in
parentd235a0ef5897aa0a145a79a4d41eed7257c246b7 (diff)
downloadhercules-fad2325ed62ed8a3f7c09635415f096b680d34f9.tar.gz
hercules-fad2325ed62ed8a3f7c09635415f096b680d34f9.tar.bz2
hercules-fad2325ed62ed8a3f7c09635415f096b680d34f9.tar.xz
hercules-fad2325ed62ed8a3f7c09635415f096b680d34f9.zip
Added Doxygen configuration (use 'make docs' to generate)
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 46dd17b26..be7ae674f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -53,7 +53,7 @@ HAVE_DOXYGEN=@HAVE_DOXYGEN@
MF_TARGETS = Makefile $(addsuffix /Makefile, src/common 3rdparty/mt19937ar \
3rdparty/libconfig src/char src/login src/map src/plugins \
- src/tool src/test tools/HPMHookGen)
+ src/tool src/test tools/HPMHookGen tools/doxygen)
CC = @CC@
export CC
@@ -140,6 +140,10 @@ hooks: tools/HPMHookGen/Makefile
@echo " MAKE $@"
@$(MAKE) -C tools/HPMHookGen
+docs: tools/doxygen/Makefile
+ @echo " MAKE $@"
+ @$(MAKE) -C tools/doxygen
+
import: Makefile
@# 1) create conf/import folder
@# 2) add missing files
@@ -158,6 +162,7 @@ clean buildclean: $(MF_TARGETS)
@$(MAKE) -C src/tool $@
@$(MAKE) -C src/test $@
@$(MAKE) -C tools/HPMHookGen $@
+ @$(MAKE) -C tools/doxygen $@
distclean: clean
@-rm -f $(MF_TARGETS) config.status config.log
@@ -196,9 +201,12 @@ help: Makefile
@echo " executables"
@echo "'distclean' - cleans files generated by ./configure"
@echo "'sysinfo' - re-generates the System Info include"
-ifeq ($(HAVE_PERL)$(HAVE_DOXYGEN),yesyes)
+ifeq ($(HAVE_DOXYGEN),yes)
+ @echo "'docs' - Generate the Doxygen source code documentation"
+ifeq ($(HAVE_PERL),yes)
@echo "'hooks' - re-generates the definitions for the HPM"
endif
+endif
@echo "'help' - outputs this message"
#####################################################################