]> git.proxmox.com Git - mirror_frr.git/blob - doc/Makefile.am
Merge remote-tracking branch 'origin/master' into pim_lib_work2
[mirror_frr.git] / doc / Makefile.am
1 ## Process this file with automake to produce Makefile.in.
2
3 # Dia, the version i have at least, doesn't do very good EPS output
4 # (some of the text is scaled strangely). So this will work, but
5 # it is probably better to use something like gimp to convert the
6 # dia exported PNG files to EPS manually.
7 #
8 # Here we use 'convert' from the well known 'ImageMagick' package
9 # to do conversion from png to eps/pdf for figures.
10 # PDF form is required for frr.pdf, using PDFTex at least.
11 #
12 # TeX implementation, which we depend on already anyway.
13 #
14 # dia -> (dia) -> png -> (convert) -> eps -> (epstopdf) -> pdf
15 SUFFIXES = .png .eps .dia .pdf
16 DIATOPNG = dia -t png -e
17 DIATOEPS = dia -t eps -e
18 PNGTOEPS = convert -antialias -contrast -despeckle
19 PNGTOPDF = $(PNGTOEPS)
20 EPSTOPDF = epstopdf
21
22 VNCFIGURES_PNG =
23 VNCFIGURES_DIA = -vnc-mesh -vnc-frr-route-reflector \
24 -vnc-commercial-route-reflector -vnc-redundant-route-reflectors \
25 -vnc-gw -vnc-gw-rr
26
27 # TODO: A target that creates an empty text file for each member of
28 # VNCFIGURES_TXT
29 VNCFIGURES_TXT = $(VNCFIGURES:%.png=%.txt)
30
31 # The figure sources
32 figures_names_parts = -normal-processing -rs-processing \
33 _topologies_full _topologies_rs \
34 $(VNCFIGURES_DIA)
35
36 figures_sources = $(figures_names_parts:%=fig%.dia)
37 figures_png = $(figures_names_parts:%=fig%.png) $(VNCFIGURES_PNG)
38 figures_pdf = $(figures_names_parts:%=fig%.pdf) $(VNCFIGURES_PNG:%.png=%.pdf)
39 figures_eps = $(figures_names_parts:%=fig%.eps) $(VNCFIGURES_PNG:%.png=%.eps)
40 figures_txt = $(figures_names_parts:%=fig%.txt)
41
42 # rather twisted logic because we have to build PDFs of the EPS figures for
43 # PDFTex and yet build one PDF, frr.pdf, from texi source. Which means we
44 # cant rely on a single automatic rule for *.pdf, eg the one automatically
45 # provided by automake. If you are an automake wizard, please feel free to
46 # compact it somehow.
47
48 # Built from defines.texi.in
49 BUILT_SOURCES = defines.texi
50
51 info_TEXINFOS = frr.texi
52
53 # Have to manually specify the frr.pdf rule in order to allow
54 # us to have a generic automatic .pdf rule to build the figure sources
55 # because it cant just work from the png's directly it seems - contrary
56 # to the documentation...
57 frr.pdf: $(info_TEXINFOS) $(figures_pdf) $(frr_TEXINFOS)
58 $(TEXI2PDF) -o "$@" $< || true
59
60 frr_TEXINFOS = appendix.texi basic.texi bgpd.texi isisd.texi filter.texi \
61 vnc.texi \
62 install.texi ipv6.texi kernel.texi main.texi ospf6d.texi ospfd.texi \
63 overview.texi protocol.texi ripd.texi ripngd.texi routemap.texi \
64 snmp.texi vtysh.texi routeserver.texi defines.texi $(figures_png) \
65 snmptrap.texi ospf_fundamentals.texi isisd.texi $(figures_txt)
66
67 .png.eps:
68 $(PNGTOEPS) $< "$@"
69
70 .png.pdf:
71 $(PNGTOPDF) $< "$@"
72
73 .dia.png:
74 $(DIATOPNG) "$@" $<
75
76 man_MANS = frr.1
77
78 if PIMD
79 man_MANS += pimd.8
80 endif
81
82 if BGPD
83 man_MANS += bgpd.8
84 endif
85
86 if ISISD
87 man_MANS += isisd.8
88 endif
89
90 if OSPF6D
91 man_MANS += ospf6d.8
92 endif
93
94 if OSPFCLIENT
95 man_MANS += ospfclient.8
96 endif
97
98 if OSPFD
99 man_MANS += ospfd.8
100 endif
101
102 if LDPD
103 man_MANS += ldpd.8
104 endif
105
106 if RIPD
107 man_MANS += ripd.8
108 endif
109
110 if RIPNGD
111 man_MANS += ripngd.8
112 endif
113
114 if VTYSH
115 man_MANS += vtysh.1
116 endif
117
118 if WATCHFRR
119 man_MANS += watchfrr.8
120 endif
121
122 if ZEBRA
123 man_MANS += zebra.8
124 endif
125
126 EXTRA_DIST = BGP-TypeCode draft-zebra-00.ms draft-zebra-00.txt \
127 \
128 bgpd.8.in \
129 isisd.8.in \
130 ospf6d.8.in \
131 ospfclient.8.in \
132 ospfd.8.in \
133 ldpd.8.in \
134 ripd.8.in \
135 ripngd.8.in \
136 pimd.8.in \
137 vtysh.1.in \
138 watchfrr.8.in \
139 zebra.8.in \
140 frr.1.in \
141 \
142 mpls/ChangeLog.opaque.txt mpls/cli_summary.txt \
143 mpls/opaque_lsa.txt mpls/ospfd.conf \
144 $(figures_sources) $(figures_png) $(figures_txt)
145
146 draft-zebra-00.txt: draft-zebra-00.ms
147 groff -T ascii -ms $< > $@
148
149 # Ensure that all of the figures are copied into the html directory
150 html-local: $(HTMLS)
151 if test -d $(HTMLS) ; then \
152 cp -p $(figures_png) $(HTMLS) ; \
153 else \
154 echo "$(HTMLS) is not a directory. Make it so, the rerun make."; \
155 fi