diff options
author | shennetsind <ind@henn.et> | 2013-10-07 13:41:02 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-10-07 13:41:02 -0300 |
commit | dda77cb771769fcbf13765c0edf3e5da91f3666c (patch) | |
tree | 74154558d5fbc3782a6a1070f1ac0c8a0a4fdff3 /src/tool/Makefile.in | |
parent | c56e3eb701658079f1de09db759f3b09327ec046 (diff) | |
parent | e7457d450f44f07881e9a8d9af25b068596f3df4 (diff) | |
download | hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.tar.gz hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.tar.bz2 hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.tar.xz hercules-dda77cb771769fcbf13765c0edf3e5da91f3666c.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to 'src/tool/Makefile.in')
-rw-r--r-- | src/tool/Makefile.in | 20 |
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" ##################################################################### |