alemauri.eu/makefile

15 lines
237 B

5 years ago
SRCDIR = src
DESTDIR = dst
SITENAME = "Mauri's blog"
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}