diff options
| author | Devendra | 2013-09-25 13:51:19 +0530 |
|---|---|---|
| committer | Devendra | 2013-09-25 13:51:19 +0530 |
| commit | 09d6ea1fa20f87dc648740ffb2a70f67e7e4efa9 (patch) | |
| tree | b1121f01efe49709a85a33f956f1ea572fda4eea /python-twisted/Makefile | |
| parent | 2c77bdb1d0725d7203ce7ce94ec675de750974b0 (diff) | |
| download | pubnub-python-09d6ea1fa20f87dc648740ffb2a70f67e7e4efa9.tar.bz2 | |
combining into Pubnub.py, added common async unit test methodCL-9603
Diffstat (limited to 'python-twisted/Makefile')
| -rw-r--r-- | python-twisted/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/python-twisted/Makefile b/python-twisted/Makefile index 13a5e5a..bf23137 100644 --- a/python-twisted/Makefile +++ b/python-twisted/Makefile @@ -6,13 +6,23 @@ all: build .PHONY: build build: + cat ../common/LICENSE_HEADER > ./Pubnub.py + echo "\n" >> ./Pubnub.py + cat ../common/PubnubCrypto.py >> ./Pubnub.py + echo "\n" >> ./Pubnub.py + cat ../common/PubnubBase.py >> ./Pubnub.py + echo "\n" >> ./Pubnub.py + cat ../common/PubnubCoreAsync.py >> ./Pubnub.py + echo "\n" >> ./Pubnub.py + cat ./unassembled/Platform.py >> ./Pubnub.py find -name "Pubnub*py" | xargs sed -i "s/PubNub\ [0-9]\.[0-9]\.[0-9]/PubNub\ $(VERSION)/g" .PHONY: clean clean: + rm -f Pubnub.py* .PHONY: test test: - python ../common/unit-test-async.py + python tests/unit-tests.py |
