blob: bc163dd39023da94c6a518960eaaa9d3d89d7ef5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
default:
@echo "git-subtree doesn't need to be built."
@echo
@echo "Try: make doc"
@false
doc: git-subtree.1
%.1: %.xml
xmlto -m manpage-normal.xsl man $^
%.xml: %.txt
asciidoc -b docbook -d manpage -f asciidoc.conf \
-agit_version=1.6.3 $^
clean:
rm -f *~ *.xml *.html *.1
rm -rf subproj mainline
|