]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/GNUmakefile
release commit
[lilypond.git] / Documentation / user / GNUmakefile
1 # Documentation/tex/Makefile
2
3 depth=../..
4
5
6 LATEX_FILES =$(wildcard *.latex)
7
8 # todo: add latex.
9 DVI_FILES = $(addprefix $(outdir)/, $(TELY_FILES:.tely=.dvi))
10
11 EXTRA_DIST_FILES= $(LATEX_FILES) $(IMAGES)
12 # IMAGES=$(wildcard *-suite1-line.*)
13 HTML_FILES = $(addprefix $(outdir)/, $(TELY_FILES:.tely=.html))
14
15 PS_FILES = $(DVI_FILES:.dvi=.ps)
16 PDF_FILES = $(DVI_FILES:.dvi=.pdf)
17
18 PS_GZ_FILES= $(addsuffix .gz, $(PS_FILES))
19
20 INFO_DOCS = lilypond lilypond-internals music-glossary
21 INFO_FILES = $(INFO_DOCS:%=$(outdir)/%.info)
22
23 STEPMAKE_TEMPLATES=tex texinfo omf documentation
24
25 OMF_FILES += $(outdir)/lilypond-internals.html.omf
26
27 LOCALSTEPMAKE_TEMPLATES=lilypond ly
28 LILYPOND_BOOK_FLAGS=--extra-options '-e "(ly:set-option (quote internal-type-checking) \#t)"'
29
30 include $(depth)/make/stepmake.make 
31
32 # Ugh,ugh.
33 # emacs cannot fix the menu structure when @mbinclude is used
34 # lilypond.tely uses mbinclude
35 TEXINFO_SOURCES := $(filter-out lilypond.tely, $(TEXINFO_SOURCES))
36
37 outimages:
38         true
39 #       cp $(IMAGES) $(outdir)
40
41 dvi: $(DVI_FILES)
42
43 ps: $(PS_FILES)
44
45 # Cancel the default info generation rule.  We want to generate info
46 # from `.nexi', making sure we don't run LilyPond for inline pictures,
47 # when just generating info:
48
49 $(outdir)/%.info: $(outdir)/%.texi
50
51 default: 
52
53 # Info is now built by default via texinfo-rules.
54 # We must build them by default, otherwise they get built during make install
55 info: $(INFO_FILES)
56
57 local-help: extra-local-help
58
59 extra-local-help:
60         @echo -e "\
61   dvi         update dvi documents\n\
62   info        update info pages\n\
63   ps          update PostScript documents\n\
64 "
65
66 # Generic rule using % twice not possible?
67 # $(outdir)/%/%.html: $(outdir)/%.texi
68 $(outdir)/lilypond/lilypond.html: $(outdir)/lilypond.texi outimages
69         mkdir -p $(dir $@)
70         $(MAKEINFO) --output=$(outdir)/lilypond --html $<
71         -cp -f $(outdir)/*.{png,ly} $(outdir)/lilypond
72         -cp -f $(outdir)/lilypond/index.html $@
73         $(deep-footify) $(shell find $(outdir)/$(*F)/*.html)
74
75 $(outdir)/lilypond-internals/lilypond-internals.html: $(outdir)/lilypond-internals.texi
76         mkdir -p $(dir $@)
77         $(MAKEINFO) --output=$(outdir)/lilypond-internals --html $<
78         -cp -f $(outdir)/*.{png,ly} $(outdir)/lilypond-internals
79         -cp -f $(outdir)/lilypond-internals/index.html $@
80         $(deep-footify) $(shell find $(outdir)/$(*F)/*.html)
81
82 ifeq ($(SPLITTING_MAKEINFO),yes)
83
84 DEEP_HTML_FILES = $(outdir)/lilypond/lilypond.html $(outdir)/lilypond-internals/lilypond-internals.html
85
86 else
87
88 # Links referred to by Documentation index
89 LILYPOND_LINKS=Reference-Manual.html Tutorial.html Ly2dvi.html Midi2ly.html
90
91 local-WWW: outimages deep-symlinks
92
93 deep-symlinks:
94         mkdir -p $(outdir)/lilypond
95         cd $(outdir)/lilypond && $(foreach i, $(LILYPOND_LINKS),\
96                 rm -f $(i) && ln -s lilypond.html $(i) &&) true
97
98 endif
99
100
101 local-WWW: $(HTML_FILES) $(datafiles) $(PDF_FILES) $(PS_GZ_FILES) $(DEEP_HTML_FILES) info-dir
102
103 local-WWW-clean: deep-WWW-clean
104
105 deep-WWW-clean:
106         rm -rf $(outdir)/lilypond $(outdir)/lilypond-internals
107
108 info-dir:
109         $(SHELL) $(buildscript-dir)/install-info-html.sh --dir=$(outdir) lilypond lilypond-internals
110         $(MAKE) footify
111         $(MAKE) deep-footify
112
113
114 $(outdir)/%.bib: %.bib
115         ln -f $< $@
116 # we want footers even if website builds (or is built) partly
117         $(MAKE) footify
118
119 local-clean:
120         rm -f fonts.aux fonts.log feta*.tfm feta*.*pk 
121         rm -rf $(outdir)/lilypond $(outdir)/lilypond-internals
122
123 #$(outdir)/lilypond.nexi: $(outdir)/interfaces.itexi
124 #$(outdir)/lilypond.texi: $(outdir)/interfaces.itexi
125
126 # Rules for the automatically generated documentation
127 # When cross-compiling, we don't have lilypond, so we fake
128 ifneq ($(CROSS),yes)
129
130
131 # there used to be a dependency on a dummy target, to force a rebuild of lilypond-internals every time.
132 # however, this triggers compilation during install, which  is a bad thing (tm).
133
134 $(outdir)/lilypond-internals.nexi $(outdir)/lilypond-internals.texi: $(builddir)/lily/$(outconfbase)/lilypond
135         cd $(outdir) && $(builddir)/lily/$(outconfbase)/lilypond --verbose $(abs-srcdir)/ly/generate-documentation
136         -ln $(outdir)/lilypond-internals.texi $(outdir)/lilypond-internals.nexi
137
138
139 ## unused
140 $(outdir)/interfaces.itexi: dummy
141         cd $(outdir) && $(builddir)/lily/$(outconfbase)/lilypond $(abs-srcdir)/ly/generate-interface-doc
142
143 else
144
145 $(outdir)/lilypond-internals.nexi $(outdir)/lilypond-internals.texi:
146         touch $@
147         touch $(outdir)/$(*F).nexi
148
149 $(outdir)/interfaces.itexi:
150         cp dummy-interfaces.itexi $@
151 endif
152
153