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 /src/common | |
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 'src/common')
-rw-r--r-- | src/common/Makefile.in | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/common/Makefile.in b/src/common/Makefile.in index 78f9cd0d1..53b7a472e 100644 --- a/src/common/Makefile.in +++ b/src/common/Makefile.in @@ -40,22 +40,25 @@ CC = @CC@ export CC ##################################################################### -.PHONY: all sql common common_sql common_mini clean help +.PHONY: all sql common common_sql common_mini clean buildclean help all: sql sql: $(SQL_DEPENDS) -clean: - @echo " CLEAN common" +buildclean: + @echo " CLEAN common (build temp files)" @rm -rf *.o obj_all obj_sql +clean: buildclean + @echo " CLEAN common" + help: @echo "possible targets are 'sql' 'all' 'clean' 'help'" - @echo "'sql' - builds object files used in sql servers" - @echo "'all' - builds all above targets" - @echo "'clean' - cleans builds and objects" - @echo "'help' - outputs this message" + @echo "'sql' - builds object files used in sql servers" + @echo "'all' - builds all above targets" + @echo "'clean', 'buildclean' - cleans builds and objects" + @echo "'help' - outputs this message" ##################################################################### |