alemauri.eu/makefile

18 lines
283 B
Makefile
Raw Normal View History

2020-08-08 17:03:29 +02:00
SRCDIR = src
DESTDIR = dst
2020-08-12 00:31:11 +02:00
SITENAME = "Mauri's website"
2020-08-11 12:04:16 +02:00
URL = alemauri.eu
2020-08-08 17:03:29 +02:00
all:
mkdir -p ${DESTDIR}
2020-08-11 12:04:16 +02:00
ssg ${SRCDIR} ${DESTDIR} ${SITENAME} 'https://${URL}'
2020-08-12 19:34:19 +02:00
test: all
xdg-open ${DESTDIR}/index.html
2020-08-11 12:04:16 +02:00
install: all
rsync -vruL ${DESTDIR}/ www@${URL}:/www/
2020-08-08 17:03:29 +02:00
clean:
rm -rf ${DESTDIR}