src moved back to pod. this include thing was a neat idea but it just adds another...
[rrdtool.git] / doc / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 SUFFIXES = .pod .1 .man .html .txt .pm .pdf .inc
4
5 #AUTOMAKE_OPTIONS        =  foreign
6
7 #ACLOCAL_M4 = $(top_srcdir)/config/aclocal.m4
8
9 CLEANFILES = *.1 *.html *.txt *-dircache RRD?.pod *.pdf *~ core *itemcache *.rej *.orig *.tmp
10
11 POD = bin_dec_hex.pod        rrddump.pod            rrdgraph_examples.pod  rrdrestore.pod         rrdupdate.pod  \
12       cdeftutorial.pod       rrdfetch.pod           rrdgraph_graph.pod     rrdthreads.pod         rrdxport.pod   \
13       rpntutorial.pod        rrdfirst.pod           rrdgraph_rpn.pod       rrdtool.pod                           \
14       rrd-beginners.pod      rrdinfo.pod            rrdtune.pod                                                  \
15       rrdcgi.pod             rrdgraph.pod           rrdlast.pod                                                  \
16       rrdcreate.pod          rrdgraph_data.pod      rrdresize.pod          rrdtutorial.pod                       
17
18
19 PMP = RRDs.pod RRDp.pod
20
21 MAN = $(POD:.pod=.1)
22 TXT = $(MAN:.1=.txt)
23 HTML = $(POD:.pod=.html) $(PMP:.pod=.html)
24 PDF = $(MAN:.1=.pdf)
25
26 # what should go into the distribution
27 EXTRA_DIST= $(POD) $(HTML) $(TXT) rrdtool-dump.dtd rrdtool-xport.dtd
28
29 # some install rules
30 idocdir = $(prefix)/doc
31 idoc_DATA = $(POD) $(TXT)
32 ihtmldir = $(prefix)/html
33 ihtml_DATA = $(HTML)
34 imandir = $(mandir)/man1
35 iman_DATA = $(MAN)
36
37 all-local: link txt man html-local
38
39 .src.pod:
40         perl -n -e 'if (/^=include\s+(\S+)/){open F,"$$1.inc" || die $$?;print <F>; close F} else {print}'  $<  > $@
41
42 .pod.1 .pm.1 .pl.1:
43         pod2man --release=$(VERSION) --center=rrdtool $<  > $@
44
45 .1.txt:
46         @NROFF@ -man -Tlp $< > $@
47
48 .1.pdf:
49         @TROFF@ -man $< | ps2pdf - $@
50
51 .pm.html .pod.html .pl.html:
52         pod2html --infile=$< --outfile=$@ --noindex --htmlroot=. --podpath=. --title=$*
53
54 RRDs.pod:
55         ln -s ../bindings/perl-shared/RRDs.pm RRDs.pod
56
57 RRDp.pod:
58         ln -s ../bindings/perl-piped/RRDp.pm RRDp.pod
59
60 index.html:
61         rm -f index.html; ln -s rrdtool.html index.html
62
63 link: RRDp.pod RRDs.pod index.html
64
65 man: $(MAN)
66
67 html-local: $(HTML)
68
69 txt: $(TXT)
70
71 pdf-local: $(PDF)
72
73 pod: $(POD)