annotate Makefile @ 412:9681da59a95b

Wrap lines
author Martin Geisler <martin@geisler.net>
date Fri, 29 Aug 2014 12:25:04 +0200
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