blob: c5831d7ec5f42345f3c72e41baf297dce5d988d6 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# title package specific variables
# file make/Variables.make
#
# do not change this file for site-wide extensions; please use
# make/$(outdir)/Site.make;
#
# Any change in files in this directory (make/) would be distributed, if
# you do make dist
#
buildscript-dir = $(top-build-dir)/scripts/build/$(outconfbase)
auxpython-dir = $(src-depth)/python/auxiliar
auxscript-dir = $(src-depth)/scripts/auxiliar
script-dir = $(src-depth)/scripts
input-dir = $(src-depth)/input
flower-dir = $(src-depth)/flower
lily-dir = $(src-depth)/lily
mi2mu-dir = $(src-depth)/mi2mu
make-dir = $(src-depth)/make
include-flower = $(src-depth)/flower/include
export PYTHONPATH:=$(auxpython-dir):$(PYTHONPATH)
LILYPOND_INCLUDES = $(include-flower) $(depth)/flower/$(outdir)
# should use to create .spec ?
# installed by 'make installextradoc'
EXTRA_DOC_FILES = \
ANNOUNCEMENT ANNOUNCE-0.1 AUTHORS.txt COPYING DEDICATION INSTALL.txt NEWS PATCHES.txt README.txt TODO \
Documentation/out/*.txt\
Documentation/tex/*.doc\
Documentation/tex/*.bib\
Documentation/logo/out/lelie_logo.gif\
input\
INSTALLED_EXTRA_DOC_FILES = $(addprefix $(prefix:/%=%)/doc/lilypond/, $(EXTRA_DOC_FILES))
INSTALLED_DIST_FILES = $(addprefix $(prefix:/%=%)/, $(INSTALL_DIST_FILES))
|