18 lines
357 B
Makefile
18 lines
357 B
Makefile
all: tup
|
|
|
|
tup:
|
|
tup build
|
|
|
|
graph:
|
|
tup graph . | dot -Tpng > graph.png
|
|
|
|
deploy: tup
|
|
rsync --checksum --copy-links -ave 'ssh -p 4242' \
|
|
--exclude-from=rsync_excludes.txt \
|
|
build/* fab@ffreling.com:public_html/ffreling.com/public/
|
|
|
|
preview: tup
|
|
rsync --checksum --copy-links -ave 'ssh -p 4242' \
|
|
--exclude-from=rsync_excludes.txt \
|
|
build/* preview/
|