]> git.donarmstrong.com Git - lilypond.git/blob - make/ly-rules.make
391fcd84edf2fec6d0754bf2bea5c36180f20707
[lilypond.git] / make / ly-rules.make
1 .SUFFIXES: .doc .dvi .tely .texi .ly
2
3
4 $(outdir)/%.latex: %.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) $(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) $(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 -dCompatibilityLevel=1.2 -sPAPERSIZE=a4 -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=$@ -dCompatibilityLevel=1.2 -sPAPERSIZE=a4 -c .setpdfwrite -f $@.pdfps
40
41 $(outdir)/%.html.omf: %.tely
42         $(call GENERATE_OMF,html)
43
44 $(outdir)/%.pdf.omf: %.tely
45         $(call GENERATE_OMF,pdf)
46
47 $(outdir)/%.ps.gz.omf: %.tely
48         $(call GENERATE_OMF,ps.gz) 
49
50 $(outdir)/%.html.omf: $(outdir)/%.texi
51         $(call GENERATE_OMF,html)
52
53 $(outdir)/%.pdf.omf: $(outdir)/%.texi
54         $(call GENERATE_OMF,pdf)
55
56 $(outdir)/%.ps.gz.omf: $(outdir)/%.texi
57         $(call GENERATE_OMF,ps.gz)