]> git.cworth.org Git - lmno.games/blob - Makefile
Fix padding calculations for intermediate widths
[lmno.games] / Makefile
1 DEPLOY_HOST=lmno.games
2 DEPLOY_DIR=/srv/lmno.games/www
3 DO_NOT_DEPLOY="Makefile"
4 DO_NOT_DELETE=flempires
5
6 deploy:
7         rm -rf .deploy-source
8         git clone . .deploy-source
9         rm -rf .deploy-source/.git
10         (cd .deploy-source; rsync -avz \
11                 --exclude=$(DO_NOT_DEPLOY) \
12                 --exclude=$(DO_NOT_DELETE) \
13                 --delete \
14                 --delete-after \
15                 ./ $(DEPLOY_HOST):$(DEPLOY_DIR) )
16         rm -rf .deploy-source