annotate Makefile @ 467:8a0dad3adbf7

downloads: link to new main repo
author Kevin Bullock <kbullock+mercurial@ringworld.org>
date Fri, 30 Sep 2016 16:37:49 -0500
parents 89c7ce3d2ffe
children 94ad26ab1689
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
391
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
1 all:: build
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
2 build:
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
3 python ../blatter/blatter/__init__.py blat
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
4
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
5 deploy-ssh:
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
6 ssh selenic 'cd /home/hg/www && hg pull -u'
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
7 deploy:
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
8 cd /home/hg/www && hg pull -u
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
9 serve:
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
10 python ../blatter/blatter/__init__.py serve
89c7ce3d2ffe Add Makefile and HOWTO
David Soria Parra <dsp@php.net>
parents:
diff changeset
11 .PHONY: build deploy-ssh deploy serve