annotate doc/Makefile @ 612:9cd745437269

On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote: # HG changeset patch # User Alecs King <alecsk@gmail.com> On Sat, Jul 02, 2005 at 02:11:34PM -0700, Matt Mackall wrote: > On Sun, Jul 03, 2005 at 12:49:27AM +0800, Alecs King wrote: > > Hg is really very nice. The only feature i miss from git is the > > whatchanged -p, which shows a diff along with a changeset. > > python before, i just dig into the mercurial/commands.py a while and > > see what diff(), dodiff(), export(), show_changeset(), log() would > > normally do. There might be one thing or two missed or wrong. But here > > it is: a '-d' option to 'hg log' showing the diff info. You can use 'hg > > log -d' to show the whole history with the diff or 'hg log -d <file>' to > > show that info of a particular file. And also works with the '-r' > > option. > > Let's use -p. We're going to be combining the global and per command > switch namespace shortly and the global -p will disappear. Okay. '-d' changed to '-p'. Just like 'whatchanged -p', now we have 'hg log -p'. > Also, the argument list for show_changeset is getting a bit unwieldy. This time i remain show_changeset untouched at all. Only changed some bits of log().
author Alecs King <alecsk@gmail.com>
date Mon, 04 Jul 2005 12:15:44 -0800
parents f8cb8d082d40
children efa4a7e2f322
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
465
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
1
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
2 SOURCES=$(wildcard *.1.txt)
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
3 MAN=$(SOURCES:%.1.txt=%.1)
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
4 HTML=$(SOURCES:%.1.txt=%.1.html)
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
5
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
6 all: man
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
7
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
8 man: $(MAN)
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
9
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
10 html: $(HTML)
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
11
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
12 %.1: %.1.xml
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
13 xmlto man $*.1.xml
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
14
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
15 %.1.xml: %.1.txt
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
16 asciidoc -d manpage -b docbook $*.1.txt
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
17
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
18 %.1.html: %.1.txt
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
19 asciidoc -b html $*.1.txt
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
20
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
21 clean:
f8cb8d082d40 Add a doc makefile
mpm@selenic.com
parents:
diff changeset
22 $(RM) $(MAN) $(MAN:%.1=%.1.xml) $(MAN:%.1=%.1.html)