diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-10-02 18:56:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-02 18:56:27 +0300 |
commit | 451b3fac158ca3586a149fa64fe10f86ec140a43 (patch) | |
tree | 01738484d7222e3b637e17142bea18152f504166 /Makefile.in | |
parent | cb2769b8b3b18c90b017f600654ce494ff260f9f (diff) | |
parent | b4f015cb31ec2cb60c45b22bd17e0e05fcd6be41 (diff) | |
download | hercules-451b3fac158ca3586a149fa64fe10f86ec140a43.tar.gz hercules-451b3fac158ca3586a149fa64fe10f86ec140a43.tar.bz2 hercules-451b3fac158ca3586a149fa64fe10f86ec140a43.tar.xz hercules-451b3fac158ca3586a149fa64fe10f86ec140a43.zip |
Merge pull request #1453 from HerculesWS/gitlab
Added GitLab CI configuration
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 12 |
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" ##################################################################### |