]> git.donarmstrong.com Git - lilypond.git/blob - lib/Makefile
280af9ce067401caefb248da93b8d2710d2d0744
[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 LOADLIBES +=
46 #
47
48 # main target of this module:
49
50 # MAINTARGET = $(EXECUTABLE)
51 # MAINTARGET = $(LIBRARY)
52 # MAINTARGET = $(bindir)/$(EXECUTABLE)# huh?
53 MAINTARGET = $(outdir)/$(LIBRARY)# huh?
54
55 default: $(MAINTARGET)
56 #
57
58 localclean:
59         rm -f $(MAINTARGET)
60
61 # generic targets and rules:
62 #
63 include ./$(depth)/make/Targets.make
64 include ./$(depth)/make/Rules.make
65
66 # auto dependencies:
67 #
68 -include $(DEPFILES)
69 #
70