503cf14613
This is done to avoid issues with symbolic links
22 lines
309 B
Makefile
22 lines
309 B
Makefile
TARGET=site
|
|
|
|
all: site.hs
|
|
ghc $< -o ${TARGET}
|
|
|
|
build: all
|
|
./${TARGET} build
|
|
|
|
tup:
|
|
tup build
|
|
|
|
preview: tup
|
|
cp -r build preview
|
|
rm -f preview/tup.config
|
|
|
|
graph:
|
|
tup graph . | dot -Tpng > graph.png
|
|
|
|
deploy:
|
|
rsync --checksum -ave 'ssh -p 4242' \
|
|
build/* fab@ffreling.com:public_html/ffreling.com/public/
|