diff options
author | shenhuyong <shenhuyong@hotmail.com> | 2013-10-05 14:02:18 +0800 |
---|---|---|
committer | shenhuyong <shenhuyong@hotmail.com> | 2013-10-05 14:02:18 +0800 |
commit | 0a14a122a02aeac9b8cf007eb727cdab846f2329 (patch) | |
tree | 356d243254912e73d6991a03f877dbea063986b8 /Makefile.in | |
parent | f4fb487fbd563ead914ebdc64ae8074650469375 (diff) | |
parent | d6965a8072c5a768f798a4a58e525b695c702afd (diff) | |
download | hercules-0a14a122a02aeac9b8cf007eb727cdab846f2329.tar.gz hercules-0a14a122a02aeac9b8cf007eb727cdab846f2329.tar.bz2 hercules-0a14a122a02aeac9b8cf007eb727cdab846f2329.tar.xz hercules-0a14a122a02aeac9b8cf007eb727cdab846f2329.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 7dfb138f9..f41aac4c7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,6 +46,8 @@ export CC import \ test \ clean \ + buildclean \ + distclean \ help all: $(ALL_DEPENDS) @@ -111,7 +113,7 @@ import: Makefile @if test ! -d conf/import ; then mkdir conf/import ; fi @for f in $$(ls conf/import-tmpl) ; do if test ! -e conf/import/$$f ; then cp conf/import-tmpl/$$f conf/import ; fi ; done -clean: $(MF_TARGETS) +clean buildclean: $(MF_TARGETS) @$(MAKE) -C src/common $@ @$(MAKE) -C 3rdparty/mt19937ar $@ @$(MAKE) -C 3rdparty/libconfig $@ @@ -140,7 +142,9 @@ help: Makefile @echo "'sql' - builds sql servers (targets 'common_sql' 'login_sql' 'char_sql'" @echo " 'map_sql' and 'import')" @echo "'test' - builds tests" - @echo "'clean' - cleans builds and objects" + @echo "'clean' - cleans executables and objects" + @echo "'buildclean' - cleans build temporary (object) files, without deleting the" + @echo " executables" @echo "'distclean' - cleans files generated by ./configure" @echo "'help' - outputs this message" |