]> git.cworth.org Git - lmno.games/blob - Makefile
Merge in empires-html client
[lmno.games] / Makefile
1 DEPLOY_HOST=lmno.games
2 DEPLOY_DIR=/srv/lmno.games/www
3 DO_NOT_DEPLOY="Makefile"
4
5 deploy:
6         rm -rf .deploy-source
7         git clone . .deploy-source
8         rm -rf .deploy-source/.git
9         (cd .deploy-source; rsync -avz \
10                 --exclude=$(DO_NOT_DEPLOY) \
11                 ./ $(DEPLOY_HOST):$(DEPLOY_DIR) )
12         rm -rf .deploy-source