Makefile: add target `update-peg'

This commit is contained in:
Michael Teichgräber 2010-12-03 23:27:21 +01:00
parent fa865c7dbc
commit a77ab2f820
2 changed files with 10 additions and 0 deletions

View File

@ -39,6 +39,7 @@ VCS = git
GITHUB = git://github.com GITHUB = git://github.com
# also, if hggit extension is available: # also, if hggit extension is available:
# VCS = hg # VCS = hg
VCS-PULLFLAGS =
# #
@ -56,6 +57,11 @@ $(LEG):
peg: peg:
$(VCS) clone $(GITHUB)/knieriem/peg $(VCS) clone $(GITHUB)/knieriem/peg
update-peg:
cd peg && $(VCS) pull $(VCS-PULLFLAGS)
cd peg/leg && make clean
# #
# access to original C source files # access to original C source files
# #

View File

@ -46,6 +46,10 @@ finish the installation:
See doc.go for an example how to use the package. See doc.go for an example how to use the package.
To update [knieriem/peg][] run `gomake update-peg`. This
will fetch available revisions from github, and remove the
old *leg* binary.
To create the command line program *markdown,* run To create the command line program *markdown,* run
cd $GOROOT/src/pkg/github.com/knieriem/markdown cd $GOROOT/src/pkg/github.com/knieriem/markdown