]> git.donarmstrong.com Git - lilypond.git/blob - make/Docrules.make
release: 0.1.62
[lilypond.git] / make / Docrules.make
1 # special rules for the documentation section.
2 # There are too many to add to the general rules
3
4 .SUFFIXES: .pod .txt .1  .html
5
6 pod2html=pod2html
7 pod2groff=pod2man --center="LilyPond documentation" --section="0"\
8         --release="LilyPond $(VERSION)" $< > $@
9
10 $(outdir)/%.gif: %.xpm
11         xpmtoppm $< | ppmtogif > $@
12
13 $(outdir)/%.dvi: $(outdir)/%.mudtex
14         latex '\nonstopmode \input $<'
15         mv $(notdir $@) $(outdir)
16
17 $(outdir)/%.mudtex: %.doc
18         $(depth)/bin/out/mudela-book  --outdir=$(outdir)/ --outname=$(notdir $@) $<
19
20 $(outdir)/%.txt: $(outdir)/%.1
21         troff -man -Tascii $< | grotty -b -u -o > $@
22
23 $(depth)/%.txt: $(outdir)/%.txt
24         cp $< $@
25
26
27 #  perl 5.003/4
28 POD2HTML5004=$(POD2HTML) --noindex --infile $< --outfile=$@;  sh $(depth)/bin/add-URLs.sh $@
29
30 POD2HTML5003=$(POD2HTML) $< ; mv $(notdir $@) $(outdir)/
31
32
33 do_pod2html=$(POD2HTML5004)
34
35
36 $(outdir)/%.html: %.pod $(depth)/VERSION
37         $(do_pod2html) 
38         add-html-footer $@
39
40 $(outdir)/%.5: %.pod
41         $(pod2groff)
42
43 $(outdir)/%.1: %.pod
44         $(pod2groff)
45