]> git.proxmox.com Git - mirror_frr.git/blob - doc/Makefile.am
Merge pull request #705 from dwalton76/bgpd-show-neighbor-community
[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 babeld.texi \
63 install.texi ipv6.texi kernel.texi main.texi \
64 nhrpd.texi \
65 eigrpd.texi \
66 ospf6d.texi ospfd.texi \
67 overview.texi protocol.texi ripd.texi ripngd.texi routemap.texi \
68 snmp.texi vtysh.texi routeserver.texi defines.texi $(figures_png) \
69 snmptrap.texi ospf_fundamentals.texi isisd.texi $(figures_txt)
70
71 .png.eps:
72 $(PNGTOEPS) $< "$@"
73
74 .png.pdf:
75 $(PNGTOPDF) $< "$@"
76
77 .dia.png:
78 $(DIATOPNG) "$@" $<
79
80 man_MANS = frr.1
81
82 if PIMD
83 man_MANS += pimd.8
84 endif
85
86 if BGPD
87 man_MANS += bgpd.8
88 endif
89
90 if ISISD
91 man_MANS += isisd.8
92 endif
93
94 if OSPF6D
95 man_MANS += ospf6d.8
96 endif
97
98 if OSPFCLIENT
99 man_MANS += ospfclient.8
100 endif
101
102 if OSPFD
103 man_MANS += ospfd.8
104 endif
105
106 if LDPD
107 man_MANS += ldpd.8
108 endif
109
110 if RIPD
111 man_MANS += ripd.8
112 endif
113
114 if RIPNGD
115 man_MANS += ripngd.8
116 endif
117
118 if NHRPD
119 man_MANS += nhrpd.8
120 endif
121
122 if VTYSH
123 man_MANS += vtysh.1
124 endif
125
126 if WATCHFRR
127 man_MANS += watchfrr.8
128 endif
129
130 if ZEBRA
131 man_MANS += zebra.8
132 endif
133
134 if EIGRPD
135 man_MANS += eigrpd.8
136 endif
137
138 EXTRA_DIST = BGP-TypeCode draft-zebra-00.ms draft-zebra-00.txt \
139 \
140 bgpd.8.in \
141 isisd.8.in \
142 ospf6d.8.in \
143 ospfclient.8.in \
144 ospfd.8.in \
145 ldpd.8.in \
146 ripd.8.in \
147 ripngd.8.in \
148 pimd.8.in \
149 nhrpd.8.in \
150 vtysh.1.in \
151 watchfrr.8.in \
152 zebra.8.in \
153 frr.1.in \
154 eigrpd.8.in \
155 \
156 mpls/ChangeLog.opaque.txt mpls/cli_summary.txt \
157 mpls/opaque_lsa.txt mpls/ospfd.conf \
158 $(figures_sources) $(figures_png) $(figures_txt)
159
160 draft-zebra-00.txt: draft-zebra-00.ms
161 groff -T ascii -ms $< > $@
162
163 # Ensure that all of the figures are copied into the html directory
164 html-local: $(HTMLS)
165 if test -d $(HTMLS) ; then \
166 cp -p $(figures_png) $(HTMLS) ; \
167 else \
168 echo "$(HTMLS) is not a directory. Make it so, the rerun make."; \
169 fi