]> git.donarmstrong.com Git - lilypond.git/blob - flower/test/Makefile
0cc3bb960c5d2515ad05e64939c25e49073fafff
[lilypond.git] / flower / test / Makefile
1 #
2 # project  LilyPond -- the musical typesetter
3 # title    makefile for flowertest
4 # file     test/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 # identify module:
17 #
18 NAME =flower-test
19 # include ./$(depth)/$(NAME)/.version
20 MODULE_NAME = flower
21 include ./$(depth)/flower/.version
22
23 #
24
25 # generic variables:
26 #
27 include ./$(depth)/make/Variables.make
28 include ./$(depth)/make/Files.make 
29 #
30
31 # list of distribution files:
32 #
33 EXTRA_DISTFILES = result 
34
35 # list of custom libraries:
36 #
37
38 MODULE_LIBDEPS=check-flower-deps
39 MODULE_LIBES = -lflower
40 #
41
42
43 # main target of this module:
44 #
45 BUILDSTRINGTEST=$(MAINTARGET)
46 EXECSTRINGTEST=$(EXECUTABLE)
47
48 # don't do the exec, as this might fail if flowerlib isn't installed yet.
49 default:  $(BUILDSTRINGTEST) 
50
51
52 do-stringtest:
53         $(EXECSTRINGTEST) > $(outdir)/result
54         cmp $(outdir)/result result
55
56 dummy:
57
58 # generic targets and rules:
59 #
60 include ./$(depth)/make/Targets.make
61 include ./$(depth)/make/Rules.make
62
63
64 # auto dependencies:
65 #
66 -include $(DEPFILES)
67 #
68