# HG changeset patch # User Augie Fackler # Date 1482508412 18000 # Node ID 94ad26ab1689f6ef011779a10c91cc4c87bfd3bc # Parent 39b44ed32913cc10bcc93115286262f080a257fb Makefile: add extra blank lines between rule for readability diff -r 39b44ed32913 -r 94ad26ab1689 Makefile --- a/Makefile Thu Dec 08 13:48:48 2016 +0530 +++ b/Makefile Fri Dec 23 10:53:32 2016 -0500 @@ -1,11 +1,15 @@ all:: build + build: python ../blatter/blatter/__init__.py blat deploy-ssh: ssh selenic 'cd /home/hg/www && hg pull -u' + deploy: cd /home/hg/www && hg pull -u + serve: python ../blatter/blatter/__init__.py serve + .PHONY: build deploy-ssh deploy serve