blob: 64a271faf6ec14b5d212cdd0e31e9b5860cb8969 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# quick doc-building makefile used by website
# requires: man2html, texinfo
docs: ledger.1.html ledger.html ledger.pdf ledger3.html ledger3.pdf
%.1.html: %.1
-man2html $< | tail -n+3 >$@
%.html: %.texi
-makeinfo --force --html --no-split -o $@ $<
%.pdf: %.texi
-texi2pdf -b -q $<
rm -f $*.aux $*.cp $*.fn $*.ky $*.log $*.pg $*.toc $*.tp $*.vr
clean:
rm -rf ledger.1.html ledger.html ledger3.html ledger.pdf ledger3.pdf
|