]> git.donarmstrong.com Git - lilypond.git/blob - flower/test/Makefile
release: 0.0.63
[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 MAINTARGET = $(lily_bindir)/$(EXECUTABLE)# huh?
46 BUILDSTRINGTEST=$(MAINTARGET)
47 EXECSTRINGTEST=$(EXECUTABLE)
48
49 # don't do the exec, as this might fail if flowerlib isn't installed yet.
50 default:  $(BUILDSTRINGTEST) 
51
52
53 do-stringtest:
54         $(EXECSTRINGTEST) > $(outdir)/result
55         cmp $(outdir)/result result
56
57 dummy:
58
59 # generic targets and rules:
60 #
61 include ./$(depth)/make/Targets.make
62 include ./$(depth)/make/Rules.make
63
64
65 # auto dependencies:
66 #
67 -include $(DEPFILES)
68 #
69