/[svn]/linuxsampler/trunk/src/testcases/Makefile.in
ViewVC logotype

Annotation of /linuxsampler/trunk/src/testcases/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 211 - (hide annotations) (download)
Sun Jul 25 23:27:41 2004 UTC (19 years, 9 months ago) by schoenebeck
File size: 10182 byte(s)
* src/linuxsampler.cpp: tidied up a bit, "initialization completed"
  message shown only after the server is actually running
* src/testcases/: print the name of each test suite before running the
  tests of the suite, added first tests against the LSCP server using a
  socket connection to the LSCP server (tests for the following LSCP
  commands: "ADD CHANNEL", "GET CHANNELS", "REMOVE CHANNEL")

1 schoenebeck 57 # Makefile.in generated by automake 1.6.3 from Makefile.am.
2     # @configure_input@
3    
4     # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
5     # Free Software Foundation, Inc.
6     # This Makefile.in is free software; the Free Software Foundation
7     # gives unlimited permission to copy and/or distribute it,
8     # with or without modifications, as long as this notice is preserved.
9    
10     # This program is distributed in the hope that it will be useful,
11     # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12     # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13     # PARTICULAR PURPOSE.
14    
15     @SET_MAKE@
16     SHELL = @SHELL@
17    
18     srcdir = @srcdir@
19     top_srcdir = @top_srcdir@
20     VPATH = @srcdir@
21     prefix = @prefix@
22     exec_prefix = @exec_prefix@
23    
24     bindir = @bindir@
25     sbindir = @sbindir@
26     libexecdir = @libexecdir@
27     datadir = @datadir@
28     sysconfdir = @sysconfdir@
29     sharedstatedir = @sharedstatedir@
30     localstatedir = @localstatedir@
31     libdir = @libdir@
32     infodir = @infodir@
33     mandir = @mandir@
34     includedir = @includedir@
35     oldincludedir = /usr/include
36     pkgdatadir = $(datadir)/@PACKAGE@
37     pkglibdir = $(libdir)/@PACKAGE@
38     pkgincludedir = $(includedir)/@PACKAGE@
39     top_builddir = ../..
40    
41     ACLOCAL = @ACLOCAL@
42     AUTOCONF = @AUTOCONF@
43     AUTOMAKE = @AUTOMAKE@
44     AUTOHEADER = @AUTOHEADER@
45    
46     am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
47     INSTALL = @INSTALL@
48     INSTALL_PROGRAM = @INSTALL_PROGRAM@
49     INSTALL_DATA = @INSTALL_DATA@
50     install_sh_DATA = $(install_sh) -c -m 644
51     install_sh_PROGRAM = $(install_sh) -c
52     install_sh_SCRIPT = $(install_sh) -c
53     INSTALL_SCRIPT = @INSTALL_SCRIPT@
54     INSTALL_HEADER = $(INSTALL_DATA)
55     transform = @program_transform_name@
56     NORMAL_INSTALL = :
57     PRE_INSTALL = :
58     POST_INSTALL = :
59     NORMAL_UNINSTALL = :
60     PRE_UNINSTALL = :
61     POST_UNINSTALL = :
62     build_alias = @build_alias@
63     build_triplet = @build@
64     host_alias = @host_alias@
65     host_triplet = @host@
66     target_alias = @target_alias@
67     target_triplet = @target@
68    
69     EXEEXT = @EXEEXT@
70     OBJEXT = @OBJEXT@
71     PATH_SEPARATOR = @PATH_SEPARATOR@
72     AMTAR = @AMTAR@
73     AR = @AR@
74     AS = @AS@
75     AWK = @AWK@
76     CC = @CC@
77     CXX = @CXX@
78     CXXCPP = @CXXCPP@
79     DEPDIR = @DEPDIR@
80     DLLTOOL = @DLLTOOL@
81     ECHO = @ECHO@
82     EGREP = @EGREP@
83     F77 = @F77@
84     GCJ = @GCJ@
85     GCJFLAGS = @GCJFLAGS@
86     INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
87     JACK_CFLAGS = @JACK_CFLAGS@
88     JACK_LIBS = @JACK_LIBS@
89     LIBTOOL = @LIBTOOL@
90     LN_S = @LN_S@
91     OBJDUMP = @OBJDUMP@
92     PACKAGE = @PACKAGE@
93     PKG_CONFIG = @PKG_CONFIG@
94     RANLIB = @RANLIB@
95     RC = @RC@
96     STRIP = @STRIP@
97     VERSION = @VERSION@
98     am__include = @am__include@
99     am__quote = @am__quote@
100     install_sh = @install_sh@
101 schoenebeck 211 target = @target@
102     target_cpu = @target_cpu@
103     target_os = @target_os@
104     target_vendor = @target_vendor@
105 schoenebeck 57 INCLUDES = $(all_includes)
106     METASOURCES = AUTO
107    
108     EXTRA_PROGRAMS = linuxsamplertest
109 schoenebeck 211 linuxsamplertest_SOURCES = linuxsamplertest.cpp ThreadTest.cpp MutexTest.cpp ConditionTest.cpp LSCPTest.cpp
110 schoenebeck 57 linuxsamplertest_LDADD = $(top_builddir)/src/liblinuxsampler.la -lcppunit
111     subdir = src/testcases
112     mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
113     CONFIG_HEADER = $(top_builddir)/config.h
114     CONFIG_CLEAN_FILES =
115     EXTRA_PROGRAMS = linuxsamplertest$(EXEEXT)
116     am_linuxsamplertest_OBJECTS = linuxsamplertest.$(OBJEXT) \
117 schoenebeck 63 ThreadTest.$(OBJEXT) MutexTest.$(OBJEXT) \
118 schoenebeck 211 ConditionTest.$(OBJEXT) LSCPTest.$(OBJEXT)
119 schoenebeck 57 linuxsamplertest_OBJECTS = $(am_linuxsamplertest_OBJECTS)
120     linuxsamplertest_DEPENDENCIES = $(top_builddir)/src/liblinuxsampler.la
121     linuxsamplertest_LDFLAGS =
122    
123     DEFS = @DEFS@
124     DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
125     CPPFLAGS = @CPPFLAGS@
126     LDFLAGS = @LDFLAGS@
127     LIBS = @LIBS@
128     depcomp = $(SHELL) $(top_srcdir)/depcomp
129     am__depfiles_maybe = depfiles
130 schoenebeck 63 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ConditionTest.Po \
131 schoenebeck 211 @AMDEP_TRUE@ ./$(DEPDIR)/LSCPTest.Po ./$(DEPDIR)/MutexTest.Po \
132     @AMDEP_TRUE@ ./$(DEPDIR)/ThreadTest.Po \
133 schoenebeck 57 @AMDEP_TRUE@ ./$(DEPDIR)/linuxsamplertest.Po
134     CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
135     $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
136     LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
137     $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
138     $(AM_CXXFLAGS) $(CXXFLAGS)
139     CXXLD = $(CXX)
140     CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
141     $(AM_LDFLAGS) $(LDFLAGS) -o $@
142     CXXFLAGS = @CXXFLAGS@
143     DIST_SOURCES = $(linuxsamplertest_SOURCES)
144 schoenebeck 211 DIST_COMMON = Makefile.am Makefile.in
145 schoenebeck 57 SOURCES = $(linuxsamplertest_SOURCES)
146    
147     all: all-am
148    
149     .SUFFIXES:
150     .SUFFIXES: .cpp .lo .o .obj
151     $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
152     cd $(top_srcdir) && \
153     $(AUTOMAKE) --gnu src/testcases/Makefile
154     Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
155     cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
156     linuxsamplertest$(EXEEXT): $(linuxsamplertest_OBJECTS) $(linuxsamplertest_DEPENDENCIES)
157     @rm -f linuxsamplertest$(EXEEXT)
158     $(CXXLINK) $(linuxsamplertest_LDFLAGS) $(linuxsamplertest_OBJECTS) $(linuxsamplertest_LDADD) $(LIBS)
159    
160     mostlyclean-compile:
161     -rm -f *.$(OBJEXT) core *.core
162    
163     distclean-compile:
164     -rm -f *.tab.c
165    
166 schoenebeck 63 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConditionTest.Po@am__quote@
167 schoenebeck 211 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LSCPTest.Po@am__quote@
168 schoenebeck 57 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MutexTest.Po@am__quote@
169     @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ThreadTest.Po@am__quote@
170     @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linuxsamplertest.Po@am__quote@
171    
172     distclean-depend:
173     -rm -rf ./$(DEPDIR)
174    
175     .cpp.o:
176     @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
177     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
178     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
179     $(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
180    
181     .cpp.obj:
182     @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
183     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
184     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
185     $(CXXCOMPILE) -c -o $@ `cygpath -w $<`
186    
187     .cpp.lo:
188     @AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
189     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
190     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
191     $(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
192     CXXDEPMODE = @CXXDEPMODE@
193    
194     mostlyclean-libtool:
195     -rm -f *.lo
196    
197     clean-libtool:
198     -rm -rf .libs _libs
199    
200     distclean-libtool:
201     -rm -f libtool
202     uninstall-info-am:
203    
204     ETAGS = etags
205     ETAGSFLAGS =
206    
207     tags: TAGS
208    
209     ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
210     list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
211     unique=`for i in $$list; do \
212     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
213     done | \
214     $(AWK) ' { files[$$0] = 1; } \
215     END { for (i in files) print i; }'`; \
216     mkid -fID $$unique
217    
218     TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
219     $(TAGS_FILES) $(LISP)
220     tags=; \
221     here=`pwd`; \
222     list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
223     unique=`for i in $$list; do \
224     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
225     done | \
226     $(AWK) ' { files[$$0] = 1; } \
227     END { for (i in files) print i; }'`; \
228     test -z "$(ETAGS_ARGS)$$tags$$unique" \
229     || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
230     $$tags $$unique
231    
232     GTAGS:
233     here=`$(am__cd) $(top_builddir) && pwd` \
234     && cd $(top_srcdir) \
235     && gtags -i $(GTAGS_ARGS) $$here
236    
237     distclean-tags:
238     -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
239     DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
240    
241     top_distdir = ../..
242     distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
243    
244     distdir: $(DISTFILES)
245     @list='$(DISTFILES)'; for file in $$list; do \
246     if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
247     dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
248     if test "$$dir" != "$$file" && test "$$dir" != "."; then \
249     dir="/$$dir"; \
250     $(mkinstalldirs) "$(distdir)$$dir"; \
251     else \
252     dir=''; \
253     fi; \
254     if test -d $$d/$$file; then \
255     if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
256     cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
257     fi; \
258     cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
259     else \
260     test -f $(distdir)/$$file \
261     || cp -p $$d/$$file $(distdir)/$$file \
262     || exit 1; \
263     fi; \
264     done
265     check-am: all-am
266     check: check-am
267 schoenebeck 211 all-am: Makefile
268 schoenebeck 57
269     installdirs:
270    
271     install: install-am
272     install-exec: install-exec-am
273     install-data: install-data-am
274     uninstall: uninstall-am
275    
276     install-am: all-am
277     @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
278    
279     installcheck: installcheck-am
280     install-strip:
281     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
282     INSTALL_STRIP_FLAG=-s \
283     `test -z '$(STRIP)' || \
284     echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
285     mostlyclean-generic:
286    
287     clean-generic:
288    
289     distclean-generic:
290     -rm -f Makefile $(CONFIG_CLEAN_FILES)
291    
292     maintainer-clean-generic:
293     @echo "This command is intended for maintainers to use"
294     @echo "it deletes files that may require special tools to rebuild."
295     clean: clean-am
296    
297     clean-am: clean-generic clean-libtool mostlyclean-am
298    
299     distclean: distclean-am
300    
301     distclean-am: clean-am distclean-compile distclean-depend \
302     distclean-generic distclean-libtool distclean-tags
303    
304     dvi: dvi-am
305    
306     dvi-am:
307    
308     info: info-am
309    
310     info-am:
311    
312     install-data-am:
313    
314     install-exec-am:
315    
316     install-info: install-info-am
317    
318     install-man:
319    
320     installcheck-am:
321    
322     maintainer-clean: maintainer-clean-am
323    
324     maintainer-clean-am: distclean-am maintainer-clean-generic
325    
326     mostlyclean: mostlyclean-am
327    
328     mostlyclean-am: mostlyclean-compile mostlyclean-generic \
329     mostlyclean-libtool
330    
331     uninstall-am: uninstall-info-am
332    
333     .PHONY: GTAGS all all-am check check-am clean clean-generic \
334     clean-libtool distclean distclean-compile distclean-depend \
335     distclean-generic distclean-libtool distclean-tags distdir dvi \
336     dvi-am info info-am install install-am install-data \
337     install-data-am install-exec install-exec-am install-info \
338     install-info-am install-man install-strip installcheck \
339     installcheck-am installdirs maintainer-clean \
340     maintainer-clean-generic mostlyclean mostlyclean-compile \
341     mostlyclean-generic mostlyclean-libtool tags uninstall \
342     uninstall-am uninstall-info-am
343    
344     # Tell versions [3.59,3.63) of GNU make to not export all variables.
345     # Otherwise a system limit (for SysV at least) may be exceeded.
346     .NOEXPORT:

  ViewVC Help
Powered by ViewVC