]> git.donarmstrong.com Git - lilypond.git/blob - test/Makefile.in
release: 0.1.54
[lilypond.git] / test / Makefile.in
1 # Makefile.in generated automatically by automake 1.2f from Makefile.am
2
3 # Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
4 # This Makefile.in is free software; the Free Software Foundation
5 # gives unlimited permission to copy and/or distribute it,
6 # with or without modifications, as long as this notice is preserved.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11 # PARTICULAR PURPOSE.
12
13 # Generated automatically by wild-perl 0.1
14 # project  LilyPond -- the musical typesetter
15 # title    makefile for test
16 # file     test/Makefile.am.wild
17
18
19 SHELL = /bin/sh
20
21 srcdir = @srcdir@
22 top_srcdir = @top_srcdir@
23 VPATH = @srcdir@
24 prefix = @prefix@
25 exec_prefix = @exec_prefix@
26
27 bindir = @bindir@
28 sbindir = @sbindir@
29 libexecdir = @libexecdir@
30 datadir = @datadir@
31 sysconfdir = @sysconfdir@
32 sharedstatedir = @sharedstatedir@
33 localstatedir = @localstatedir@
34 libdir = @libdir@
35 infodir = @infodir@
36 mandir = @mandir@
37 includedir = @includedir@
38 oldincludedir = /usr/include
39
40 pkgdatadir = $(datadir)/@PACKAGE@
41 pkglibdir = $(libdir)/@PACKAGE@
42 pkgincludedir = $(includedir)/@PACKAGE@
43
44 top_builddir = ..
45
46 ACLOCAL = @ACLOCAL@
47 AUTOCONF = @AUTOCONF@
48 AUTOMAKE = @AUTOMAKE@
49 AUTOHEADER = @AUTOHEADER@
50
51 INSTALL = @INSTALL@
52 INSTALL_PROGRAM = @INSTALL_PROGRAM@
53 INSTALL_DATA = @INSTALL_DATA@
54 INSTALL_SCRIPT = @INSTALL_SCRIPT@
55 transform = @program_transform_name@
56
57 NORMAL_INSTALL = :
58 PRE_INSTALL = :
59 POST_INSTALL = :
60 NORMAL_UNINSTALL = :
61 PRE_UNINSTALL = :
62 POST_UNINSTALL = :
63 host_alias = @host_alias@
64 host_triplet = @host@
65 AGE = @AGE@
66 AUTOGENERATE = @AUTOGENERATE@
67 BISON = @BISON@
68 CC = @CC@
69 COMPILEINFO = @COMPILEINFO@
70 CPPFLAGS = @CPPFLAGS@
71 CURRENT = @CURRENT@
72 CXX = @CXX@
73 CXXFLAGS = @CXXFLAGS@
74 DIR_DATADIR = @DIR_DATADIR@
75 EXTRA_LIBES = @EXTRA_LIBES@
76 FIND = @FIND@
77 FLEX = @FLEX@
78 ICFLAGS = @ICFLAGS@
79 ILDFLAGS = @ILDFLAGS@
80 LD = @LD@
81 LDFLAGS = @LDFLAGS@
82 LEX = @LEX@
83 LIBTOOL = @LIBTOOL@
84 LN = @LN@
85 LN_S = @LN_S@
86 MAKE = @MAKE@
87 MAKEINFO = @MAKEINFO@
88 MFDIR = @MFDIR@
89 NM = @NM@
90 PACKAGE = @PACKAGE@
91 PERL = @PERL@
92 POD2HTML = @POD2HTML@
93 POD2MAN = @POD2MAN@
94 PYTHON = @PYTHON@
95 RANLIB = @RANLIB@
96 REVISION = @REVISION@
97 TAR = @TAR@
98 TEXDIR = @TEXDIR@
99 TEXPREFIX = @TEXPREFIX@
100 VERSION = @VERSION@
101 YACC = @YACC@
102 ZIP = @ZIP@
103 absolute_builddir = @absolute_builddir@
104
105 TEST_SCHRIFTEN = check-lily-midi.sh check-lily-paper.sh check-mi2mu.sh
106
107 # ugh ugh
108 TESTS = $(top_srcdir)/test/check-lily-midi.sh $(top_srcdir)/test/check-lily-paper.sh $(top_srcdir)/test/check-mi2mu.sh
109
110 INPUTS = test.midi
111
112 RESULTS = ok.midi ok.tex ok.ly
113
114 EXTRA_DIST = Makefile.am.wild GNUmakefile $(TEST_SCHRIFTEN) $(INPUTS) $(RESULTS)
115 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
116 CONFIG_HEADER = ../flower/config.hh
117 CONFIG_CLEAN_FILES = 
118 DIST_COMMON =  Makefile.am Makefile.in
119
120
121 DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
122
123 GZIP = --best
124 default: all
125
126 .SUFFIXES:
127 $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) 
128         cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps test/Makefile
129
130 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
131         cd $(top_builddir) \
132           && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
133
134 tags: TAGS
135 TAGS:
136
137
138 distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
139
140 subdir = test
141
142 distdir: $(DISTFILES)
143         @for file in $(DISTFILES); do \
144           d=$(srcdir); \
145           test -f $(distdir)/$$file \
146           || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
147           || cp -p $$d/$$file $(distdir)/$$file; \
148         done
149 check-TESTS: $(TESTS)
150         @failed=0; all=0; \
151         srcdir=$(srcdir); export srcdir; \
152         for tst in $(TESTS); do \
153           if test -f $$tst; then dir=.; \
154           else dir="$(srcdir)"; fi; \
155           if $(TESTS_ENVIRONMENT) $$dir/$$tst; then \
156             all=`expr $$all + 1`; \
157             echo "PASS: $$tst"; \
158           elif test $$? -ne 77; then \
159             all=`expr $$all + 1`; \
160             failed=`expr $$failed + 1`; \
161             echo "FAIL: $$tst"; \
162           fi; \
163         done; \
164         if test "$$failed" -eq 0; then \
165           banner="All $$all tests passed"; \
166         else \
167           banner="$$failed of $$all tests failed"; \
168         fi; \
169         dashes=`echo "$$banner" | sed s/./=/g`; \
170         echo "$$dashes"; \
171         echo "$$banner"; \
172         echo "$$dashes"; \
173         test "$$failed" -eq 0
174 info:
175 dvi:
176 check: all
177         $(MAKE) check-TESTS
178 installcheck:
179 install-exec: 
180         @$(NORMAL_INSTALL)
181
182 install-data: 
183         @$(NORMAL_INSTALL)
184
185 install: install-exec install-data all
186         @:
187
188 uninstall: 
189
190 all: Makefile
191
192 install-strip:
193         $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
194 installdirs:
195
196
197 mostlyclean-generic:
198         -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
199
200 clean-generic:
201         -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
202
203 distclean-generic:
204         -rm -f Makefile $(DISTCLEANFILES)
205         -rm -f config.cache config.log stamp-h stamp-h[0-9]*
206         -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
207
208 maintainer-clean-generic:
209         -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
210         -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
211 mostlyclean:  mostlyclean-generic
212
213 clean:  clean-generic mostlyclean
214
215 distclean:  distclean-generic clean
216         -rm -f config.status
217         -rm -f libtool
218
219 maintainer-clean:  maintainer-clean-generic distclean
220         @echo "This command is intended for maintainers to use;"
221         @echo "it deletes files that may require special tools to rebuild."
222
223 .PHONY: default tags distdir check-TESTS info dvi installcheck \
224 install-exec install-data install uninstall all installdirs \
225 mostlyclean-generic distclean-generic clean-generic \
226 maintainer-clean-generic clean mostlyclean distclean maintainer-clean
227
228
229 # override default target for all-am: to get an extra dependency
230 all-am: Makefile $(PROGRAMS) wild-check
231
232 # dummy target for non-GNU makes; is overridden in GNUmakefile
233 wild-check:
234
235 $(srcdir)/Makefile.am: $(srcdir)/Makefile.am.wild
236         $(PERL) $(top_srcdir)/bin/wild-perl < $< > $@
237
238 # Tell versions [3.59,3.63) of GNU make to not export all variables.
239 # Otherwise a system limit (for SysV at least) may be exceeded.
240 .NOEXPORT: