]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/texinfo-rules.make
Further attempts to make the docs build with texi2html
[lilypond.git] / stepmake / stepmake / texinfo-rules.make
1
2 .SUFFIXES: .html .info .texi .texinfo
3
4 # "makeinfo --info" MUST be able to read PNGs from CWD for info images
5 # to work, hence $(INFO_IMAGES_DIR) -> $(outdir)/ symlink.
6 # $(outdir)/$(INFO_IMAGES_DIR)/*.png symlinks are only needed to view
7 # out-www/*.info with Emacs -- HTML docs no longer need these
8 # symlinks, see replace_symlinks_urls in
9 # buildscripts/add_html_footer.py.
10
11 ifneq ($(INFO_IMAGES_DIR),)
12
13 # make dereferences symlinks, and $(INFO_IMAGES_DIR) is a symlink
14 # to $(outdir), so we can't use directly $(INFO_IMAGES_DIR) as a
15 # prerequisite, otherwise %.info are always outdated (because older
16 # than $(outdir), hence this .dep file
17
18 $(outdir)/%.info-images-dir.dep: $(outdir)/%.texi
19         rm -f $*
20         ln -s $(outdir) $*
21         mkdir -p $(outdir)/$*
22         find $(outdir)/$*/ -name '*'.png | xargs rm -f
23         (cd $(outdir)/$*/ ; ln -sf ../*.png . )
24         touch $@
25
26 else
27
28 $(outdir)/.info-images-dir.dep:
29         touch $@
30
31 endif
32
33 # Settings for texi2html:
34 ifneq ($(ISOLANG),) 
35 TEXI2HTML_LANG = --lang=$ISOLANG
36 endif
37 TEXI2HTML_FLAGS += --init-file=$(top-src-dir)/lilypond-texi2html.init --css-ref=lilypond.css $(DOCUMENTATION_INCLUDES)
38 TEXI2HTML = $(TEXI2HTML_PROGRAM) $(TEXI2HTML_FLAGS) $(TEXI2HTML_LANG)
39
40
41
42 $(outdir)/%.info: $(outdir)/%.texi $(outdir)/$(INFO_IMAGES_DIR).info-images-dir.dep
43         $(MAKEINFO) -I$(outdir) --output=$@ $<
44
45
46 $(outdir)/%/index.html: $(outdir)/%.texi
47         mkdir -p $(dir $@)
48         $(TEXI2HTML) --I=$(outdir) --output=$@ --split=section $<
49 #       $(TEXI2HTML) --I=$(outdir) --output=$(dir $@) --split=section $<
50
51 # TODO: Pass -D bigpage to texi2html
52 $(outdir)/%-big-page.html: $(outdir)/%.texi
53         $(TEXI2HTML) --I=$(outdir) --output=$@ $< 
54
55 $(outdir)/%.html: $(outdir)/%.texi
56         $(TEXI2HTML) --I=$(outdir) --output=$@ $<
57
58 $(outdir)/%.html.omf: %.texi
59         $(call GENERATE_OMF,html)
60
61 $(outdir)/%.pdf.omf: %.texi
62         $(call GENERATE_OMF,pdf)
63
64 $(outdir)/%.ps.gz.omf: %.texi
65         $(call GENERATE_OMF,ps.gz)
66
67 $(outdir)/%.pdf: $(outdir)/%.texi
68         cd $(outdir); texi2pdf $(TEXI2PDF_FLAGS) --batch $(TEXINFO_PAPERSIZE_OPTION) $(<F)
69
70 $(outdir)/%.txt: $(outdir)/%.texi
71         $(MAKEINFO) -I $(src-dir) -I $(outdir) --no-split --no-headers --output $@ $<
72
73 $(outdir)/%.texi: %.texi
74         rm -f $@
75         cp $< $@
76
77
78