# HG changeset patch # User samer # Date 1329141241 0 # Node ID 809bb1a96cf50ffe0c547bd07293b0546819d5e5 # Parent 3741026310ff04b0d3fdf973fff52ee83c38c971 Add push and diff targets to Makefile diff -r 3741026310ff -r 809bb1a96cf5 Makefile --- a/Makefile Thu Feb 02 00:28:05 2012 +0000 +++ b/Makefile Mon Feb 13 13:54:01 2012 +0000 @@ -17,6 +17,12 @@ pull: for f in "$(PKGS)"; do (cd $$f && hg pull); done +push: + for f in "$(PKGS)"; do (cd $$f && hg push); done + +diff: + for f in "$(PKGS)"; do (cd $$f && hg diff); done + update: for f in "$(PKGS)"; do (cd $$f && hg update); done