]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/texinfo-rules.make
Docs: reorganize documentation directory structure
[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 # python/auxiliar/postprocess_html.py.
10
11 # make dereferences symlinks, and $(INFO_IMAGES_DIR) is a symlink
12 # to $(outdir), so we can't use directly $(INFO_IMAGES_DIR) as a
13 # prerequisite, otherwise %.info are always outdated (because older
14 # than $(outdir)), hence this .dep file
15
16 $(outdir)/$(INFO_IMAGES_DIR).info-images-dir-dep: $(OUT_TEXI_FILES)
17 ifneq ($(INFO_IMAGES_DIR),)
18         rm -f $(INFO_IMAGES_DIR)
19         ln -s $(outdir) $(INFO_IMAGES_DIR)
20         mkdir -p $(outdir)/$(INFO_IMAGES_DIR)
21         rm -f $(outdir)/$(INFO_IMAGES_DIR)/[a-f0-9][a-f0-9]
22         cd $(outdir)/$(INFO_IMAGES_DIR) && $(buildscript-dir)/mass-link symbolic .. . [a-f0-9][a-f0-9]
23 endif
24         touch $@
25
26 $(outdir)/%.info: $(outdir)/%.texi $(outdir)/$(INFO_IMAGES_DIR).info-images-dir-dep $(outdir)/version.itexi
27         $(MAKEINFO) -I$(src-dir) -I$(outdir) --output=$@ $<
28
29 $(outdir)/lilypond-%.info: $(outdir)/%.texi $(outdir)/$(INFO_IMAGES_DIR).info-images-dir-dep $(outdir)/version.itexi
30         $(MAKEINFO) -I$(src-dir) -I$(outdir) --output=$@ $<
31
32 $(outdir)/%-big-page.html: $(outdir)/%.texi $(XREF_MAPS_DIR)/%.xref-map $(outdir)/version.itexi
33         $(TEXI2HTML) --I=$(src-dir) --I=$(outdir) -D bigpage --output=$@ $(TEXI2HTML_INIT) $<
34
35 $(outdir)/%.html: $(outdir)/%.texi $(XREF_MAPS_DIR)/%.xref-map $(outdir)/version.itexi
36         $(TEXI2HTML) --I=$(src-dir) --I=$(outdir) --output=$@ $(TEXI2HTML_INIT) $<
37
38 $(outdir)/%/index.html: $(outdir)/%.texi $(XREF_MAPS_DIR)/%.xref-map $(outdir)/version.itexi $(outdir)/%.html.omf
39         mkdir -p $(dir $@)
40         $(TEXI2HTML) --I=$(src-dir) --I=$(outdir) --output=$(dir $@) --prefix=index --split=section $(TEXI2HTML_INIT) $<
41         cp $(top-src-dir)/Documentation/lilypond*.css $(dir $@)
42
43
44 $(outdir)/%.html.omf: %.texi
45         $(call GENERATE_OMF,html)
46
47 $(outdir)/%.pdf.omf: %.texi
48         $(call GENERATE_OMF,pdf)
49
50 $(outdir)/%.pdf: $(outdir)/%.texi $(outdir)/version.itexi $(outdir)/%.pdf.omf
51         cd $(outdir); texi2pdf $(TEXI2PDF_FLAGS) -I $(abs-src-dir) --batch $(TEXINFO_PAPERSIZE_OPTION) $(<F)
52
53 $(outdir)/%.txt: $(outdir)/%.texi $(outdir)/version.itexi
54         $(MAKEINFO) -I$(src-dir) -I$(outdir) --no-split --no-headers --output $@ $<
55
56 $(XREF_MAPS_DIR)/%.xref-map: $(outdir)/%.texi
57         $(buildscript-dir)/extract_texi_filenames $(XREF_MAP_FLAGS) -o $(XREF_MAPS_DIR) $<
58
59 $(outdir)/%.texi: %.texi
60         cp -f $< $@
61
62 $(outdir)/version.%: $(top-src-dir)/VERSION
63         echo '@macro version'> $@
64         echo $(TOPLEVEL_VERSION)>> $@
65         echo '@end macro'>> $@
66
67 .SECONDARY: $(outdir)/version.itexi $(outdir)/version.texi \
68   $(outdir)/$(INFO_IMAGES_DIR).info-images-dir-dep \
69   $(outdir)/*.texi