blob: 515592664bb558b73dd7ccc6c128d3df286472d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
all: manual.pdf manual.html
manual.pdf: arch.pdf manual.texi
texi2pdf manual.texi
manual.html: arch.jpg manual.texi
makeinfo --html --no-split manual.texi
arch.pdf: arch.dot
dot -Tpdf arch.dot > arch.pdf
arch.jpg: arch.dot
dot -Tjpg arch.dot > arch.jpg
info_TEXINFOS = manual.texi
manual_TEXINFOS = version.texi
EXTRA_DIST = \
arch.dot \
lgpl.texi \
agpl.texi \
fdl-1.3.texi
|