diff options
| author | Devendra | 2013-07-12 10:14:21 +0530 |
|---|---|---|
| committer | Devendra | 2013-07-12 10:14:21 +0530 |
| commit | 6616acbec40ac039b7bdabf7e8b3581e68c0b2cb (patch) | |
| tree | 3768b67e046aef37790c12f774838e539ac25a80 /Makefile | |
| parent | 523802043bf1ce3616d3bac382f166e34984d5bf (diff) | |
| download | pubnub-python-6616acbec40ac039b7bdabf7e8b3581e68c0b2cb.tar.bz2 | |
adding common test from tornado and twisted
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 24 |
1 files changed, 9 insertions, 15 deletions
@@ -1,19 +1,13 @@ SUBDIRS = common python python-twisted python-tornado -.PHONY: all -all: - for dir in $(SUBDIRS); do \ - $(MAKE) -C $$dir; \ - done +.PHONY: all test +all test: $(SUBDIRS) -.PHONY: clean -clean: - for dir in $(SUBDIRS); do \ - $(MAKE) clean -C $$dir; \ - done +all: TARG=all +test: TARG=test -.PHONY: test -test: - for dir in $(SUBDIRS); do \ - $(MAKE) test -C $$dir; \ - done +$(SUBDIRS): force + @ $(MAKE) -C $@ $(TARG) + +.PHONY: force +force :; |
