]> git.donarmstrong.com Git - lilypond.git/blob - make/Template.make
release: 0.1.57
[lilypond.git] / make / Template.make
1 # THIS IS A TEMPLATE FOR SUB-PROJECT MAKEFILES
2 # should we make Include-dir and Stuff-dir templates too?
3 #
4 # project  LilyPond -- the musical typesetter
5 # title    makefile for ...
6 # file     ../Makefile 
7 #
8 # Copyright (c) 1997 by
9 #       Jan Nieuwenhuizen <jan@digicash.com>
10 #       Han-Wen Nienhuys <hanwen@stack.nl>
11 #
12
13 # subdir level:
14 #
15 depth = ..
16 #
17
18 # generic variables:
19 #
20 include ./$(depth)/make/Variables.make 
21 #
22
23 # identify module:
24 #
25 NAME = ...
26 MODULE_NAME = 
27
28 # descent order into subdirectories:
29 #
30 SUBDIRS =
31 #
32
33 # module compile settings: (not generally needed!)
34 #
35 EXTRA_CFLAGS =
36 EXTRA_CXXFLAGS =
37 EXTRA_LDFLAGS =
38 #
39 include ./$(depth)/make/Files.make
40
41 # list of extra distribution files:
42 # Makefile, C++ and pod are dist'ed automatically
43 EXTRA_DISTFILES = 
44
45 # list of custom libraries:
46 #
47 CUSTOMLIBES = \
48
49 LOADLIBES +=
50 #
51
52 # main target of this module:
53 #
54 # MAINTARGET = $(EXECUTABLE)
55 # MAINTARGET = $(LIBRARY)
56 MAINTARGET = 
57
58 default: $(MAINTARGET)
59 #
60
61 # generic targets and rules:
62 #
63 include ./$(depth)/make/Targets.make
64 include ./$(depth)/make/Rules.make
65 #
66
67