diff options
| -rw-r--r-- | Makefile | 9 | 
1 files changed, 6 insertions, 3 deletions
| @@ -1,4 +1,7 @@ +default: +.PHONY :  upload_packages +  upload_packages: -	 cd common && python setup.py sdist bdist_wheel --universal upload  --sign -i $(MAINTAINER) -r pypi -	 cd client && python setup.py sdist bdist_wheel --universal upload  --sign -i $(MAINTAINER) -r pypi -	 cd server && python setup.py sdist bdist_wheel --universal upload  --sign -i $(MAINTAINER) -r pypi +	cd common && python setup.py sdist bdist_wheel --universal upload  --sign -i $(MAINTAINER) -r pypi +	cd client && python setup.py sdist bdist_wheel --universal upload  --sign -i $(MAINTAINER) -r pypi +	cd server && python setup.py sdist bdist_wheel --universal upload  --sign -i $(MAINTAINER) -r pypi | 
