##// END OF EJS Templates
Fix path of win32text extension in INI file.
Fix path of win32text extension in INI file.

File last commit:

r1006:b0e58143 default
r1303:2dc06dd7 default
Show More
Makefile
21 lines | 301 B | text/x-makefile | MakefileLexer
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 SOURCES=$(wildcard *.[0-9].txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)
mpm@selenic.com
Add a doc makefile...
r465
Thomas Arendsen Hein
Generate html documentation by default, too.
r1006 all: man html
mpm@selenic.com
Add a doc makefile...
r465
man: $(MAN)
html: $(HTML)
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 %: %.xml
xmlto man $*.xml
mpm@selenic.com
Add a doc makefile...
r465
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 %.xml: %.txt
asciidoc -d manpage -b docbook $*.txt
mpm@selenic.com
Add a doc makefile...
r465
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 %.html: %.txt
asciidoc -b html $*.txt
mpm@selenic.com
Add a doc makefile...
r465
clean:
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 $(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html)