annotate Makefile @ 443:bd7554a71028 marutosi/use-https-at-text-of-httpseleniccomhg-8-1451660654170

close
author Sean Farley <sean@farley.io>
date Tue, 22 Mar 2016 22:32:50 -0700
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