]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/GNUmakefile
release: 1.3.120
[lilypond.git] / Documentation / user / GNUmakefile
1 # Documentation/tex/Makefile
2
3 depth=../..
4
5
6
7 LATEX_FILES =$(wildcard *.latex)
8
9
10 # todo: add latex.
11 DVI_FILES = $(addprefix $(outdir)/, $(TELY_FILES:.tely=.dvi))
12
13 EXTRA_DIST_FILES= $(LATEX_FILES)    $(wildcard *.itexi *.itely)
14
15 HTML_FILES = $(addprefix $(outdir)/, $(TELY_FILES:.tely=.html))
16
17 PS_FILES = $(DVI_FILES:.dvi=.ps)  $(OUTDOC_FILES:.doc=.ps) $(OUTTEX_FILES:.tex=.ps)
18
19 PS_GZ_FILES= $(addsuffix .gz, $(PS_FILES))
20
21 INFO_FILES = $(addprefix $(outdir)/, lilypond.info lilypond-internals.info)
22
23 STEPMAKE_TEMPLATES=tex texinfo documentation
24 LOCALSTEPMAKE_TEMPLATES=lilypond ly
25
26 include $(depth)/make/stepmake.make 
27
28 dvi: $(DVI_FILES)
29
30 ps: $(PS_FILES)
31
32
33 # Cancel default info generation rule.  We want to generate info from
34 # `.nexi', making sure we don't run LilyPond for inline pictures, when
35 # generating info.
36 $(outdir)/%.info: $(outdir)/%.texi
37
38 default: 
39
40 # Info is now built by default via texinfo-rules.
41 # We must build them by default, otherwise they get built during make install
42 info: $(INFO_FILES)
43
44
45 # The new pretest version of makeinfo, 4.0a splits html files into their own
46 # directory.  Available from
47 # ftp://texinfo.org/texinfo/pretests/texinfo-4.0a.tar.gz
48 SPLITTING_MAKEINFO = $(shell makeinfo --version | egrep '4.0((.jcn[2,3])|a)')
49
50
51 # Generic rule using % twice not possible?
52 # $(outdir)/%/%.html: $(outdir)/%.texi
53 $(outdir)/lilypond/lilypond.html: $(outdir)/lilypond.texi
54         -$(MAKEINFO) --force --output=$@ --html $<
55         -cp -f $(outdir)/*.png $(outdir)/lilypond
56         -cp -f $(outdir)/lilypond/index.html $@
57         $(deep-footify) $(shell find $(outdir)/$(*F)/*.html)
58
59 $(outdir)/lilypond-internals/lilypond-internals.html: $(outdir)/lilypond-internals.texi
60         -$(MAKEINFO) --force --output=$@ --html $<
61         -cp -f $(outdir)/*.png $(outdir)/lilypond-internals
62         -cp -f $(outdir)/lilypond-internals/index.html $@
63         $(deep-footify) $(shell find $(outdir)/$(*F)/*.html)
64
65 $(outdir)/features/features.html: $(outdir)/features.texi
66         -$(MAKEINFO) --force --output=$@ --html $<
67         -cp -f $(outdir)/*.png $(outdir)/features
68         -cp -f $(outdir)/features/index.html $@
69         $(deep-footify) $(shell find $(outdir)/$(*F)/*.html)
70
71 ifneq ($(SPLITTING_MAKEINFO),)
72
73 DEEP_HTML_FILES = $(outdir)/lilypond/lilypond.html $(outdir)/lilypond-internals/lilypond-internals.html $(outdir)/features/features.html
74
75 else
76
77 DEEP_HTML_FILES = $(outdir)/lilypond.html $(outdir)/lilypond-internals.html
78
79 endif
80
81
82 local-WWW: $(HTML_FILES) $(datafiles) $(PS_GZ_FILES) $(DEEP_HTML_FILES)
83         $(SHELL) $(buildscript-dir)/install-info-html.sh --dir=$(outdir) lilypond lilypond-internals features
84         $(MAKE) footify
85         $(MAKE) deep-footify
86
87 #       $(PYTHON) $(step-bindir)/ls-latex.py --title 'User documentation' \
88 #          $(DOC_FILES) $(TEX_FILES) $(TELY_FILES) \
89 #         | sed "s!$(outdir)/!!g" > $(outdir)/index.html
90
91
92
93 $(outdir)/%.bib: %.bib
94         ln -f $< $@
95 # we want footers even if website builds (or is built) partly
96         $(MAKE) footify
97
98 localclean:
99         rm -f fonts.aux fonts.log feta*.tfm feta*.*pk 
100         rm -rf $(outdir)/lilypond $(outdir)/lilypond-internals $(outdir)/features
101
102 backdoc-WWW: $(outdir)/lilypond-internals/lilypond-internals.html
103         $(SHELL) $(buildscript-dir)/install-info-html.sh --dir=$(outdir) lilypond lilypond-internals
104
105 #ugh. lily/OUT/lilypond hardcoded.
106 # when cross-compiling, we don't have lilypond
107 ifneq ($(CROSS),yes)
108 $(outdir)/lilypond-internals.nexi $(outdir)/lilypond-internals.texi:
109         cd $(outdir) && ../$(depth)/$(builddir)/lily/out/lilypond ../$(src-depth)/ly/generate-documentation
110         -ln $(outdir)/lilypond-internals.texi $(outdir)/lilypond-internals.nexi
111 else
112 $(outdir)/lilypond-internals.nexi $(outdir)/lilypond-internals.texi:
113         touch $@
114         touch $(outdir)/$(*F).nexi
115 endif
116