]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/texinfo-rules.make
release: 1.2.12
[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         $(footify) $@
11
12 $(outdir)/%.dvi:        $(outdir)/%.texi
13 # --clean only in >= 3.12s
14 # cd $(outdir); texi2dvi --clean ../$< 
15         cd $(outdir); texi2dvi ../$< 
16
17 $(outdir)/%.txt: $(outdir)/%.texi
18         $(MAKEINFO) -I../  --no-split --no-headers --output $@ $<
19
20 $(outdir)/%.texi: %.texi
21         cp $< $@
22