]> git.donarmstrong.com Git - lilypond.git/blob - Makefile
bbbf5763ce0782af59f53e0f53e6c37b8e5b2a5c
[lilypond.git] / Makefile
1 #
2 # project  LilyPond -- the musical typesetter
3 # title    top level makefile for LilyPond  
4 # file     Makefile 
5 #
6 # Copyright (c) 1997 by    
7 #       Jan Nieuwenhuizen <jan@digicash.com>
8 #       Han-Wen Nienhuys <hanwen@stack.nl>
9 #               ...your sort order here, or how to comment-out a comment
10
11 # subdir level:
12 #
13 depth = .
14 #
15
16 # identify module:
17 #
18 NAME = lilypond
19
20 # edit in .version only!
21 MAJOR_VERSION = $(TOPLEVEL_MAJOR_VERSION)
22 MINOR_VERSION = $(TOPLEVEL_MINOR_VERSION)
23 PATCH_LEVEL = $(TOPLEVEL_PATCH_LEVEL)
24 # use to send patches, always empty for released version:
25 MY_PATCH_LEVEL = $(TOPLEVEL_MY_PATCH_LEVEL)
26 build = ./$(depth)/lily/.build
27 #
28
29 # generic variables:
30 #
31 include ./$(depth)/make/Variables.make 
32 #
33
34 # descent order into subdirectories:
35 #
36 SUBDIRS = flower lib lily mi2mu \
37         Documentation bin init input tex make
38 #
39
40 # list of distribution files:
41 #
42 # SYMLINKS = # naah, configure
43 SCRIPTS = configure
44 README_FILES = ANNOUNCE COPYING INSTALL NEWS README TODO
45 DISTFILES= Makefile .dstreamrc .version $(README_FILES) $(SCRIPTS) $(SYMLINKS)
46 #
47
48 # generic targets and rules:
49 #
50 include ./$(depth)/make/Targets.make
51 include ./$(depth)/make/Rules.make
52 #
53