Changeset - a51ecd79cc91
[Not reviewed]
0 1 0
Benjamin Lion - 6 years ago 2019-11-18 16:14:51
lion@brahms.fm.cwi.nl
Setup host, directory, and user for rsync_upload.
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
projects/SEFM2020/Makefile
Show inline comments
 
PY?=python3
 
PELICAN?=pelican
 
PELICANOPTS=
 

	
 
BASEDIR=$(CURDIR)
 
INPUTDIR=$(BASEDIR)/content
 
OUTPUTDIR=$(BASEDIR)/output
 
CONFFILE=$(BASEDIR)/pelicanconf.py
 
PUBLISHCONF=$(BASEDIR)/publishconf.py
 

	
 
SSH_HOST=eosproxey
 
SSH_HOST=desktop.cwi.nl
 
SSH_PORT=22
 
SSH_USER=eos
 
SSH_TARGET_DIR=/var/www/SEFM2020
 
SSH_USER=$$USER
 
SSH_TARGET_DIR=/cwi/www/cws/sefm2020
 

	
 
DEBUG ?= 0
 
ifeq ($(DEBUG), 1)
 
	PELICANOPTS += -D
 
endif
 

	
 
RELATIVE ?= 0
 
ifeq ($(RELATIVE), 1)
 
	PELICANOPTS += --relative-urls
 
endif
 

	
 
help:
0 comments (0 inline, 0 general)