summaryrefslogtreecommitdiff
path: root/src/tool
diff options
context:
space:
mode:
authorshenhuyong <shenhuyong@hotmail.com>2013-10-05 14:02:18 +0800
committershenhuyong <shenhuyong@hotmail.com>2013-10-05 14:02:18 +0800
commit0a14a122a02aeac9b8cf007eb727cdab846f2329 (patch)
tree356d243254912e73d6991a03f877dbea063986b8 /src/tool
parentf4fb487fbd563ead914ebdc64ae8074650469375 (diff)
parentd6965a8072c5a768f798a4a58e525b695c702afd (diff)
downloadhercules-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 'src/tool')
-rw-r--r--src/tool/Makefile.in20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in
index baf4a0327..ee448a16a 100644
--- a/src/tool/Makefile.in
+++ b/src/tool/Makefile.in
@@ -22,7 +22,7 @@ CC = @CC@
export CC
#####################################################################
-.PHONY: all mapcache clean help
+.PHONY: all mapcache clean buildclean help
all: mapcache Makefile
@@ -32,16 +32,22 @@ mapcache: ../../mapcache@EXEEXT@
@echo " LD $(notdir $@)"
@$(CC) @LDFLAGS@ $(LIBCONFIG_INCLUDE) -o ../../mapcache@EXEEXT@ $(MAPCACHE_OBJ) $(COMMON_OBJ) $(LIBCONFIG_OBJ) @LIBS@
-clean:
+buildclean:
+ @echo " CLEAN tool (build temp files)"
+ @rm -rf obj_all/*.o
+
+clean: buildclean
@echo " CLEAN tool"
- @rm -rf obj_all/*.o ../../mapcache@EXEEXT@
+ @rm -rf ../../mapcache@EXEEXT@
help:
@echo "possible targets are 'mapcache' 'all' 'clean' 'help'"
- @echo "'mapcache' - mapcache generator"
- @echo "'all' - builds all above targets"
- @echo "'clean' - cleans builds and objects"
- @echo "'help' - outputs this message"
+ @echo "'mapcache' - mapcache generator"
+ @echo "'all' - builds all above targets"
+ @echo "'clean' - cleans builds and objects"
+ @echo "'buildclean' - cleans build temporary (object) files, without deleting the"
+ @echo " executables"
+ @echo "'help' - outputs this message"
#####################################################################