]> git.donarmstrong.com Git - lilypond.git/blob - lib/Makefile
release: 0.0.42.pre3
[lilypond.git] / lib / Makefile
1 #
2 # project  LilyPond -- the musical typesetter
3 # title    makefile for micro-lily-lib
4 # file     lib/Makefile 
5 #
6 # Copyright (c) 1997 by
7 #       Jan Nieuwenhuizen <jan@digicash.com>
8 #       Han-Wen Nienhuys <hanwen@stack.nl>
9 #
10
11 # subdir level:
12 #
13 depth = ..
14 #
15
16 # generic variables:
17 #
18 include ./$(depth)/make/Variables.make 
19 include ./$(depth)/make/Files.make
20 include ./$(depth)/make/Version.make 
21 #
22
23 # identify module:
24 #
25 NAME = lily
26 #
27
28 # descent order into subdirectories:
29 #
30 SUBDIRS = include
31 #
32
33 # to be remade each build:
34 #
35 VERSION_DEPENDENCY =#
36 #
37
38 # list of distribution files:
39 #
40 DISTFILES = Makefile $(ALL_SOURCES)
41 #
42
43 # list of custom libraries:
44 #
45 # yes, i know about the -L and -l options,
46 # but these libraries get rebuild when needed.
47 CUSTOMLIBES = \
48
49 LOADLIBES +=
50 #
51
52 # main target of this module:
53
54 # MAINTARGET = $(EXECUTABLE)
55 # MAINTARGET = $(LIBRARY)
56 # MAINTARGET = $(bindir)/$(EXECUTABLE)# huh?
57 MAINTARGET = $(libdir)/$(LIBRARY)# huh?
58
59 default: $(MAINTARGET)
60 #
61
62 # generic targets and rules:
63 #
64 include ./$(depth)/make/Targets.make
65 include ./$(depth)/make/Rules.make
66 #
67
68 # list of depend files:
69 #
70
71 #
72
73 # auto dependencies:
74 #
75 -include $(DEPFILES)
76 #
77