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

« back to all changes in this revision

Viewing changes to Documentation/topdocs/GNUmakefile

  • 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:
3
3
 
4
4
STEPMAKE_TEMPLATES=documentation tex texinfo topdocs
5
5
LOCALSTEPMAKE_TEMPLATES=lilypond ly
6
 
HTML_FILES=$(addprefix $(outdir)/, $(TEXI_FILES:.texi=.html) $(TELY_FILES:.tely=.html))
7
 
 
8
 
include $(depth)/make/stepmake.make 
 
6
HTML_FILES=$(TEXI_FILES:%.texi=$(outdir)/%.html) $(TELY_FILES:%.tely=$(outdir)/%.html)
 
7
PDF_FILES=$(outdir)/NEWS.pdf
 
8
include $(depth)/make/stepmake.make
 
9
 
 
10
ifneq ($(out),www)
 
11
LILYPOND='true'
 
12
endif
 
13
 
 
14
$(outdir)/NEWS.nexi: NEWS.tely
9
15