Correct upload targets in Makefile.in

This commit is contained in:
Justin Mayer 2013-08-29 17:35:48 -07:00
commit 8d352d9a78

View file

@ -27,7 +27,7 @@ DROPBOX_DIR=$dropbox_dir
DEBUG ?= 0 DEBUG ?= 0
ifeq ($(DEBUG), 1) ifeq ($(DEBUG), 1)
PELICANOPTS += -D PELICANOPTS += -D
endif endif
help: help:
@echo 'Makefile for a pelican Web site ' @echo 'Makefile for a pelican Web site '
@ -40,13 +40,13 @@ help:
@echo ' make serve [PORT=8000] serve site at http://localhost:8000' @echo ' make serve [PORT=8000] serve site at http://localhost:8000'
@echo ' make devserver [PORT=8000] start/restart develop_server.sh ' @echo ' make devserver [PORT=8000] start/restart develop_server.sh '
@echo ' make stopserver stop local server ' @echo ' make stopserver stop local server '
@echo ' ssh_upload upload the web site via SSH ' @echo ' make ssh_upload upload the web site via SSH '
@echo ' rsync_upload upload the web site via rsync+ssh ' @echo ' make rsync_upload upload the web site via rsync+ssh '
@echo ' dropbox_upload upload the web site via Dropbox ' @echo ' make dropbox_upload upload the web site via Dropbox '
@echo ' ftp_upload upload the web site via FTP ' @echo ' make ftp_upload upload the web site via FTP '
@echo ' s3_upload upload the web site via S3 ' @echo ' make s3_upload upload the web site via S3 '
@echo ' cf_upload upload the web site via Cloud Files' @echo ' make cf_upload upload the web site via Cloud Files'
@echo ' github upload the web site via gh-pages ' @echo ' make github upload the web site via gh-pages '
@echo ' ' @echo ' '
@echo 'Set the DEBUG variable to 1 to enable debugging, e.g. make DEBUG=1 html' @echo 'Set the DEBUG variable to 1 to enable debugging, e.g. make DEBUG=1 html'
@echo ' ' @echo ' '