annotate Makefile @ 437:dba6058e0b29

Merge pull request #7
author David Soria Parra <davidsp@fb.com>
date Thu, 03 Dec 2015 10:51:05 -0800
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