]> git.donarmstrong.com Git - lilypond.git/blob - flower/Makefile
abca493fbd94cc344ed62807f314fc69aa35cd4c
[lilypond.git] / flower / Makefile
1 #
2 # project  FlowerSoft C++ library
3 # title    top level makefile for FlowerLib
4 # file     flower/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 = flower
19 MODULE_NAME = flower
20 #
21 # edit .version only
22 include ./$(depth)/flower/.version
23 include ./$(depth)/.version
24 build = ./$(depth)/flower/lib/.build
25 #
26
27 # generic variables:
28 #
29 include ./$(depth)/make/Variables.make 
30 #
31
32 # descent order into subdirectories:
33 #
34 SUBDIRS = lib
35 #
36
37 # list of distribution files:
38 #
39 SCRIPTS = # make_version make_patch genheader clearlily configure
40 README_FILES = NEWS README TODO
41 DISTFILES= Makefile .version $(README_FILES) $(SCRIPTS)
42 #
43
44 # generic targets and rules:
45 #
46 include ./$(depth)/make/Targets.make
47 # include ./$(depth)/make/Rules.make
48 #
49
50 # version:
51 #
52 flower-version: $(flower-version)
53 $(flower-version): ./$(depth)/flower/.version ./$(bindir)/make_fversion $(build)
54         ./$(bindir)/make_fversion "$(MAJOR_VERSION)" "$(MINOR_VERSION)" "$(PATCH_LEVEL)" "$(MY_PATCH_LEVEL)" "$(BUILD)" "$(CXX) $(CXXVER)" > $@
55 #
56