Makefile: add 'upload-tarballs' target, using a foolscap-based file-transfer tool

This commit is contained in:
Brian Warner 2008-01-31 19:00:40 -07:00
parent 670933ecee
commit 19b76cfadd

View File

@ -316,10 +316,14 @@ find-trailing-spaces:
$(PYTHON) misc/find-trailing-spaces.py -r src
# TARBALL GENERATION
.PHONY: tarballs
.PHONY: tarballs upload-tarballs
tarballs:
$(MAKE) make-version
$(PYTHON) setup.py sdist --formats=bztar,gztar,zip
upload-tarballs:
for f in dist/allmydata-tahoe-*; do \
xfer-client --furlfile ~/.tahoe-tarball-upload.furl $$f; \
done
# DEBIAN PACKAGING