alemauri.eu/makefile

15 lines
240 B

5 years ago
SRCDIR = src
DESTDIR = dst
5 years ago
SITENAME = "Mauri's website"
URL = alemauri.eu
5 years ago
all:
mkdir -p ${DESTDIR}
ssg ${SRCDIR} ${DESTDIR} ${SITENAME} 'https://${URL}'
install: all
rsync -vruL ${DESTDIR}/ www@${URL}:/www/
5 years ago
clean:
rm -rf ${DESTDIR}