# HG changeset patch # User Dirk Olmes # Date 1372521544 -7200 # Node ID d566695940363f9b093da76cab5d4f18a0b4e166 # Parent 48e0e2d8babd7ed56a11e0c650936657184bb79b remove obsolete upload methods diff -r 48e0e2d8babd -r d56669594036 Makefile --- a/Makefile Sat Jun 29 17:57:01 2013 +0200 +++ b/Makefile Sat Jun 29 17:59:04 2013 +0200 @@ -34,9 +34,6 @@ @echo ' make stopserver stop local server ' @echo ' ssh_upload upload the web site via SSH ' @echo ' rsync_upload upload the web site via rsync+ssh ' - @echo ' dropbox_upload upload the web site via Dropbox ' - @echo ' ftp_upload upload the web site via FTP ' - @echo ' s3_upload upload the web site via S3 ' @echo ' github upload the web site via gh-pages ' @echo ' ' @@ -72,15 +69,6 @@ rsync_upload: publish rsync -e "ssh -p $(SSH_PORT)" -P -rvz --delete $(OUTPUTDIR)/ $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR) --cvs-exclude -dropbox_upload: publish - cp -r $(OUTPUTDIR)/* $(DROPBOX_DIR) - -ftp_upload: publish - lftp ftp://$(FTP_USER)@$(FTP_HOST) -e "mirror -R $(OUTPUTDIR) $(FTP_TARGET_DIR) ; quit" - -s3_upload: publish - s3cmd sync $(OUTPUTDIR)/ s3://$(S3_BUCKET) --acl-public --delete-removed - github: publish ghp-import $(OUTPUTDIR) git push origin gh-pages