aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDevendra2013-07-10 10:39:58 +0530
committerDevendra2013-07-10 10:39:58 +0530
commite65cc45e333cc33d19b97b5f93e69121ca2beffa (patch)
tree284435394f510ab1cd165fdac9b7bded5709dc83 /Makefile
parentdd2e5481c7b0f96d8caae5a613db0c407711999d (diff)
downloadpubnub-python-e65cc45e333cc33d19b97b5f93e69121ca2beffa.tar.bz2
adding makefiles for version updates
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..dbe0d95
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,19 @@
+SUBDIRS = common python python-twisted python-tornado
+
+.PHONY: all
+all:
+ for dir in $(SUBDIRS); do \
+ $(MAKE) -C $$dir; \
+ done
+
+.PHONY: clean
+clean:
+ for dir in $(SUBDIRS); do \
+ $(MAKE) clean -C $$dir; \
+ done
+
+.PHONY: test
+test:
+ for dir in $(SUBDIRS); do \
+ $(MAKE) test -C $$dir; \
+ done