]> git.donarmstrong.com Git - lilypond.git/blob - stepmake/stepmake/template.make
45ae61eec67af27237d262d1cb1ae7dba669ed28
[lilypond.git] / stepmake / stepmake / template.make
1 # THIS IS A TEMPLATE FOR SUB-PROJECT MAKEFILES
2 # /Makefile
3
4 # subdir level:
5 #
6 depth = ..
7 #
8
9 # identify module:
10 #
11 NAME = 
12 #
13
14 # descent order into subdirectories:
15 #
16 SUBDIRS =
17 #
18
19 # dependencies and linkage of custom libraries:
20 #
21
22 MODULE_LIBES = # $(depth)/lib $(depth)/flower
23 #
24
25 # list of extra distribution files:
26 # Makefile, C++ and pod are dist'ed automatically
27 EXTRA_DIST_FILES = 
28 #
29
30 # bootstrap stepmake:
31 #
32 include $(depth)/make/stepmake.make 
33 #
34
35 # module compile settings: (not generally needed!)
36 #
37 EXTRA_CFLAGS =
38 EXTRA_CXXFLAGS =
39 EXTRA_LDFLAGS =
40 #
41
42 # main target of this module:
43 #
44 default: $(EXECUTABLE)
45 # default: $(LIBRARY)
46 #
47
48 # EXECUTABLES=
49 # include $(stepmake)/Executable.make
50