summaryrefslogtreecommitdiff
path: root/src/test
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/test
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/test')
-rw-r--r--src/test/Makefile.in10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/test/Makefile.in b/src/test/Makefile.in
index cb99e7004..0c6d15c6b 100644
--- a/src/test/Makefile.in
+++ b/src/test/Makefile.in
@@ -24,13 +24,17 @@ CC = @CC@
export CC
#####################################################################
-.PHONY: all test_spinlock
+.PHONY: all test_spinlock clean buildclean
all: test_spinlock Makefile
-clean:
+buildclean:
+ @echo " CLEAN test (build temp files)"
+ @rm -rf *.o obj
+
+clean: buildclean
@echo " CLEAN test"
- @rm -rf *.o obj ../../test_spinlock@EXEEXT@
+ @rm -rf ../../test_spinlock@EXEEXT@
#####################################################################