website/Makefile

16 lines
279 B
Makefile
Raw Permalink Normal View History

2019-11-01 16:23:53 +01:00
all: build
2019-06-12 14:16:11 +02:00
2019-11-01 16:23:53 +01:00
build:
2019-06-09 16:02:38 +02:00
tup build
graph:
tup graph . | dot -Tpng > graph.png
2019-11-01 16:23:53 +01:00
deploy: build
rsync --checksum --copy-links -ave 'ssh -p 4242' \
2019-06-14 13:01:26 +02:00
--exclude-from=rsync_excludes.txt \
2019-06-09 16:02:38 +02:00
build/* fab@ffreling.com:public_html/ffreling.com/public/
2019-06-14 13:53:29 +02:00
2019-11-01 16:23:53 +01:00
preview: build
open build/index.html