Mercurial > hg > plclibs
changeset 4:809bb1a96cf5
Add push and diff targets to Makefile
author | samer |
---|---|
date | Mon, 13 Feb 2012 13:54:01 +0000 |
parents | 3741026310ff |
children | ddd668fb686b |
files | Makefile |
diffstat | 1 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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