]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/texinfo-rules.make
patch::: 1.3.45.jcn1
[lilypond.git] / stepmake / stepmake / texinfo-rules.make
1 # Texinfo_rules.make
2
3 .SUFFIXES: .html .info .texi .texinfo
4
5 $(outdir)/%.info: $(outdir)/%.texi
6         makeinfo --output=$@ $<
7
8 $(outdir)/%.html:       $(outdir)/%.texi
9         -makeinfo --force --output=$@ --html --no-headers $< 
10 # we want footers even if website builds (or is built) partly
11         $(footify) $@
12
13 $(outdir)/%.dvi:        $(outdir)/%.texi
14 # --clean only in >= 3.12s
15 # cd $(outdir); texi2dvi --clean ../$< 
16         cd $(outdir); texi2dvi ../$< 
17
18 $(outdir)/%.txt: $(outdir)/%.texi
19         $(MAKEINFO) -I../  --no-split --no-headers --output $@ $<
20
21 $(outdir)/%.texi: %.texi
22         cp $< $@
23
24
25