]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/texinfo-rules.make
patch::: 1.3.105.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) --force --output=$@ $<
7
8 $(outdir)/%.html: $(outdir)/%.texi
9         -$(MAKEINFO) --force --output=$@ --html --no-split $<
10 # we want footers even if website builds (or is built) partly
11         $(footify) $@
12
13 # Generic rule not possible?
14 $(outdir)/%/%.html: $(outdir)/%.texi
15         -$(MAKEINFO) --force --output=$@ --html $<
16 # we want footers even if website builds (or is built) partly
17         $(deep-footify) $(sort $(wildcard $(outdir)/$(*F)/*.html))
18
19 $(outdir)/%.dvi:        $(outdir)/%.texi
20 # --clean only in >= 3.12s
21 # cd $(outdir); texi2dvi --clean ../$< 
22         cd $(outdir); texi2dvi ../$< 
23
24 $(outdir)/%.txt: $(outdir)/%.texi
25         $(MAKEINFO) -I../  --no-split --no-headers --output $@ $<
26
27 $(outdir)/%.texi: %.texi
28         cp $< $@
29
30
31