summaryrefslogtreecommitdiff
path: root/src/map
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/map
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/map')
-rw-r--r--src/map/Makefile.in12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/map/Makefile.in b/src/map/Makefile.in
index fb78d51a1..b516c61ca 100644
--- a/src/map/Makefile.in
+++ b/src/map/Makefile.in
@@ -47,21 +47,27 @@ CC = @CC@
export CC
#####################################################################
-.PHONY: all sql map-server clean help
+.PHONY: all sql map-server clean buildclean help
all: sql
sql: map-server
-clean:
+buildclean:
+ @echo " CLEAN map (build temp files)"
+ @rm -rf *.o obj_sql
+
+clean: buildclean
@echo " CLEAN map"
- @rm -rf *.o obj_sql ../../map-server@EXEEXT@
+ @rm -rf ../../map-server@EXEEXT@
help:
@echo "possible targets are 'map-server' 'all' 'clean' 'help'"
@echo "'map-server' - map server"
@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"
#####################################################################