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

« back to all changes in this revision

Viewing changes to Documentation/pictures/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:
2
2
 
3
3
STEPMAKE_TEMPLATES=documentation
4
4
XPM_FILES=$(wildcard *.xpm)
5
 
OUTGIF_FILES = $(addprefix $(outdir)/,$(XPM_FILES:.xpm=.gif))
6
 
OUTPNG_FILES = $(addprefix $(outdir)/,$(XPM_FILES:.xpm=.png))
7
 
 
8
5
EXTRA_DIST_FILES= $(XPM_FILES)
9
 
# OUT_DIST_FILES = $(package-icon)
 
6
 
 
7
lilypond-icon = $(outdir)/lilypond.ico
 
8
ly-icon = $(outdir)/ly.ico
10
9
 
11
10
include $(depth)/make/stepmake.make
12
11
 
13
 
default: # $(package-icon)
14
 
local-dist: # $(package-icon)
15
 
 
 
12
ifeq ($(PLATFORM_WINDOWS),yes)
 
13
 
 
14
$(outdir)/%.ico: %.xpm
 
15
        $(PYTHON) $(buildscript-dir)/genicon.py $< $@
 
16
 
 
17
default: $(lilypond-icon) $(ly-icon)
 
18
 
 
19
endif # PLATFORM_WINDOWS
 
20
 
 
21
local-dist: $(icon) 
16
22
xgifs: $(OUTGIF_FILES)
17
23
pngs: $(OUTPNG_FILES)
18
 
 
19
24
local-WWW: $(OUTPNG_FILES)
20
25