]> git.donarmstrong.com Git - lilypond.git/blob - make/ly-rules.make
* input/regression/font-name.ly: show Pango fonts for
[lilypond.git] / make / ly-rules.make
1 .SUFFIXES: .doc .dvi .tely .texi .ly
2
3
4 $(outdir)/%.latex $(outdir)/%.fonts.ps:  %.doc
5         $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND) $(LILYPOND_BOOK_INCLUDES)' --output=$(outdir) --verbose $(LILYPOND_BOOK_FLAGS) $<
6
7 # don't do ``cd $(outdir)'', and assume that $(outdir)/.. is the src dir.
8 # it is not, for --srcdir builds
9 $(outdir)/%.texi: %.tely
10         rm -f $$(grep -LF '% eof' $(outdir)/lily-*systems.tex 2>/dev/null)
11         $(PYTHON) $(LILYPOND_BOOK) --psfonts=$(basename $<).fonts.ps $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND) $(LILYPOND_BOOK_INCLUDES)' --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) $<
12
13 $(outdir)/%.texi: $(outdir)/%.tely
14         rm -f $$(grep -LF '% eof' $(outdir)/lily-*systems.tex 2>/dev/null)
15         $(PYTHON) $(LILYPOND_BOOK) --psfonts=$(basename $<).fonts.ps $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND) $(LILYPOND_BOOK_INCLUDES)' --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) $<
16 #
17 # DON'T REMOVE SOURCE FILES, otherwise the .TEXI ALWAYS OUT OF DATE.
18 #       rm -f $<
19
20 # nexi: n[o-lilypond t]exi
21 # for plain info doco: don't run lilypond
22 $(outdir)/%.nexi: %.tely
23         rm -f $(outdir)/$*.texi
24         $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) --process='true' $<
25         mv $(outdir)/$*.texinfo $@ 2>/dev/null || mv $(outdir)/$*.texi $@
26
27 $(outdir)/%.info: $(outdir)/%.nexi
28         $(MAKEINFO) -I $(outdir) --output=$(outdir)/$(*F).info $<
29
30 # Timothy's booklet
31 #
32 $(outdir)/%-book.ps: $(outdir)/%.ps
33         psbook $< $<.tmp
34         pstops '2:0L@.7(21cm,0)+1L@.7(21cm,14.85cm)' $<.tmp $@
35
36 $(outdir)/%.pdf: $(outdir)/%.dvi
37         dvips $(DVIPS_FLAGS)  -o $@.pdfps -t $(DVIPS_PAPERSIZE)  $<
38 # without -dSAFER
39 # gs 8.15 complains of safety of loading a ttf directly 
40         gs -dCompatibilityLevel=1.2 -sPAPERSIZE=a4 -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=$@ -dCompatibilityLevel=1.2 -sPAPERSIZE=a4 -c .setpdfwrite -f $@.pdfps
41
42 $(outdir)/%.html.omf: %.tely
43         $(call GENERATE_OMF,html)
44
45 $(outdir)/%.pdf.omf: %.tely
46         $(call GENERATE_OMF,pdf)
47
48 $(outdir)/%.ps.gz.omf: %.tely
49         $(call GENERATE_OMF,ps.gz) 
50
51 $(outdir)/%.html.omf: $(outdir)/%.texi
52         $(call GENERATE_OMF,html)
53
54 $(outdir)/%.pdf.omf: $(outdir)/%.texi
55         $(call GENERATE_OMF,pdf)
56
57 $(outdir)/%.ps.gz.omf: $(outdir)/%.texi
58         $(call GENERATE_OMF,ps.gz)