]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/GNUmakefile
* lily/tuplet-engraver.cc: remove tupletInvisible
[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 *.png)
13
14 OUT_EPS_IMAGES=$(addprefix $(outdir)/,$(IMAGES:.png=.eps))
15 OUT_PNG_IMAGES=$(addprefix $(outdir)/,$(IMAGES))
16
17 HTML_FILES = $(addprefix $(outdir)/, $(TELY_FILES:.tely=.html))
18
19 PS_FILES = $(DVI_FILES:.dvi=.ps)
20 PDF_FILES = $(DVI_FILES:.dvi=.pdf)
21
22 PS_GZ_FILES= $(addsuffix .gz, $(PS_FILES))
23
24 INFO_DOCS = lilypond lilypond-internals music-glossary
25 INFO_FILES = $(INFO_DOCS:%=$(outdir)/%.info)
26
27 STEPMAKE_TEMPLATES=tex texinfo omf documentation
28
29 OMF_FILES += $(outdir)/lilypond-internals.html.omf
30
31 LOCALSTEPMAKE_TEMPLATES=lilypond ly
32 LILYPOND_BOOK_FLAGS = --process="lilypond-bin -I $(srcdir)/input/test -e '(ly:set-option (quote internal-type-checking) \#t)'"
33
34 include $(depth)/make/stepmake.make 
35
36 dvi: $(DVI_FILES)
37
38 ps: $(PS_FILES)
39
40 # Cancel the default info generation rule.  We want to generate info
41 # from `.nexi', making sure we don't run LilyPond for inline pictures,
42 # when just generating info:
43
44 $(outdir)/%.info: $(outdir)/%.texi
45
46 default: 
47
48 # Info is now built by default via texinfo-rules.
49 # We must build them by default, otherwise they get built during make install
50 info: $(INFO_FILES)
51
52 local-help: extra-local-help
53
54 extra-local-help:
55         @echo -e "\
56   dvi         update dvi documents\n\
57   info        update info pages\n\
58   ps          update PostScript documents\n\
59 "
60
61 # Generic rule using % twice not possible?
62 # $(outdir)/%/%.html: $(outdir)/%.texi
63 $(outdir)/lilypond/lilypond.html: $(outdir)/lilypond.texi 
64         mkdir -p $(dir $@)
65         $(MAKEINFO) -I$(outdir) --output=$(outdir)/lilypond --html $<
66         $(MAKEINFO) -I$(outdir) --output=$@ --html --no-split --no-headers $<
67         rm -f $(outdir)/lilypond/*.png $(outdir)/lilypond/*.ly 
68         -ln -f $(outdir)/*.png $(outdir)/*.ly $(outdir)/lilypond/
69
70 $(outdir)/lilypond-internals/lilypond-internals.html: $(outdir)/lilypond-internals.texi
71         mkdir -p $(dir $@)
72         $(MAKEINFO) --output=$(outdir)/lilypond-internals --html $<
73         $(MAKEINFO) -I$(outdir) --output=$@ --html --no-split --no-headers $<
74
75 ifeq ($(SPLITTING_MAKEINFO),yes)
76
77 $(outdir)/lilypond.dvi: $(OUT_EPS_IMAGES) $(OUT_PNG_IMAGES)
78
79 $(outdir)/%.png: %.png
80         convert -geometry 50x50% $< $@
81
82 $(outdir)/%.eps: %.png
83         convert $< $@
84
85 DEEP_HTML_FILES = $(outdir)/lilypond/lilypond.html $(outdir)/lilypond-internals/lilypond-internals.html
86
87 else
88
89 # Links referred to by Documentation index
90 LILYPOND_LINKS=Reference-Manual.html Tutorial.html Ly2dvi.html Midi2ly.html
91
92 local-WWW: outimages deep-symlinks
93
94 deep-symlinks:
95         mkdir -p $(outdir)/lilypond
96         cd $(outdir)/lilypond && $(foreach i, $(LILYPOND_LINKS),\
97                 rm -f $(i) && ln -s lilypond.html $(i) &&) true
98
99 endif
100
101
102 local-WWW: $(HTML_FILES) $(datafiles) $(PDF_FILES) $(PS_GZ_FILES) $(DEEP_HTML_FILES) info-dir
103
104 local-WWW-clean: deep-WWW-clean
105
106 deep-WWW-clean:
107         rm -rf $(outdir)/lilypond $(outdir)/lilypond-internals
108
109 info-dir:
110         $(SHELL) $(buildscript-dir)/install-info-html.sh --dir=$(outdir) lilypond lilypond-internals
111
112
113 $(outdir)/%.bib: %.bib
114         ln -f $< $@
115
116 local-clean:
117         rm -f fonts.aux fonts.log feta*.tfm feta*.*pk 
118         rm -rf $(outdir)/lilypond $(outdir)/lilypond-internals
119
120 # lilypond.texi deps
121 $(builddir)/mf/$(outconfbase)/feta16list.ly:
122         $(MAKE) -C $(topdir)/mf
123
124 $(outdir)/lilypond.texi: $(ITELY_FILES) macros.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
132 # of lilypond-internals every time.  however, this triggers
133 # compilation during install, which is a bad thing (tm).
134
135 $(outdir)/lilypond-internals.nexi $(outdir)/lilypond-internals.texi: $(builddir)/lily/$(outconfbase)/lilypond-bin
136         cd $(outdir) && $(builddir)/lily/$(outconfbase)/lilypond-bin --verbose $(abs-srcdir)/ly/generate-documentation
137         rm -f $(outdir)/lilypond-internals.nexi
138         -ln $(outdir)/lilypond-internals.texi $(outdir)/lilypond-internals.nexi
139
140
141 ## unused
142 $(outdir)/interfaces.itexi: dummy
143         cd $(outdir) && $(builddir)/lily/$(outconfbase)/lilypond-bin $(abs-srcdir)/ly/generate-interface-doc
144
145 else
146
147 $(outdir)/lilypond-internals.nexi $(outdir)/lilypond-internals.texi:
148         touch $@
149         touch $(outdir)/$(*F).nexi
150
151 $(outdir)/interfaces.itexi:
152         cp dummy-interfaces.itexi $@
153 endif
154
155
156 local-clean: local-delete
157
158 local-delete:
159         -rm -f $(outdir)/lily-1*
160         -rm -f $(outdir)/*