aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDevendra2013-09-25 13:51:19 +0530
committerDevendra2013-09-25 13:51:19 +0530
commit09d6ea1fa20f87dc648740ffb2a70f67e7e4efa9 (patch)
treeb1121f01efe49709a85a33f956f1ea572fda4eea /Makefile
parent2c77bdb1d0725d7203ce7ce94ec675de750974b0 (diff)
downloadpubnub-python-CL-9603.tar.bz2
combining into Pubnub.py, added common async unit test methodCL-9603
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5a6fc63..b82c77b 100644
--- a/Makefile
+++ b/Makefile
@@ -9,5 +9,11 @@ test: TARG=test
$(SUBDIRS): force
@ $(MAKE) -C $@ $(TARG)
+.PHONY: clean
+clean:
+ for dir in $(SUBDIRS); do \
+ $(MAKE) clean -C $$dir; \
+ done
+
.PHONY: force
force :;