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