~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to stepmake/stepmake/texinfo-rules.make

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
        $(MAKEINFO) -I $(outdir) --output=$@ $<
6
6
 
7
7
$(outdir)/%.html: $(outdir)/%.texi
8
 
        $(MAKEINFO) -I $(outdir) --output=$@ --html --no-split --no-headers $<
 
8
        $(MAKEINFO) -I $(outdir) --output=$@ --css-include=$(top-src-dir)/Documentation/texinfo.css --html --no-split --no-headers $<
9
9
 
10
10
$(outdir)/%.html.omf: %.texi
11
11
        $(call GENERATE_OMF,html)
14
14
        $(call GENERATE_OMF,pdf)
15
15
 
16
16
$(outdir)/%.ps.gz.omf: %.texi
17
 
        $(call GENERATE_OMF,ps.gz) 
 
17
        $(call GENERATE_OMF,ps.gz)
18
18
 
19
19
# Generic rule not possible?
20
 
$(outdir)/%/%.html: $(outdir)/%.texi 
21
 
        $(MAKEINFO) --output=$@ --html $<
 
20
$(outdir)/%/%.html: $(outdir)/%.texi
 
21
        $(MAKEINFO) --output=$@ --css-include=$(top-src-dir)/Documentation/texinfo.css --html $<
22
22
 
23
23
 
24
24
$(outdir)/%.dvi: $(outdir)/%.texi
25
25
        cd $(outdir); texi2dvi --batch $(TEXINFO_PAPERSIZE_OPTION) $(<F)
26
26
 
27
27
$(outdir)/%.txt: $(outdir)/%.texi
28
 
        $(MAKEINFO) -I $(pwd) -I $(outdir) --no-split --no-headers --output $@ $<
 
28
        $(MAKEINFO) -I $(src-dir) -I $(outdir) --no-split --no-headers --output $@ $<
29
29
 
30
30
$(outdir)/%.texi: %.texi
31
31
        rm -f $@
32
32
        cp $< $@
33
 
        chmod -w $@
34
33
 
35
34
 
36
35