/[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 63 - (hide annotations) (download)
Tue May 4 18:52:24 2004 UTC (20 years ago) by schoenebeck
File size: 10427 byte(s)
* src/common/Thread.cpp: threads are now stoppable even if they are
  waiting for a condition
* src/common/Condition.cpp: fixed little misbehavior of Set() method,
  which locked the Condition object on return
* src/testcases: added a couple of new unit tests (against classes
  'Mutex', 'Condition' and 'Thread')

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     INCLUDES = $(all_includes)
102     METASOURCES = AUTO
103    
104     EXTRA_PROGRAMS = linuxsamplertest
105 schoenebeck 63 linuxsamplertest_SOURCES = linuxsamplertest.cpp ThreadTest.cpp MutexTest.cpp MutexTest.h ThreadTest.h ConditionTest.cpp
106 schoenebeck 57 linuxsamplertest_LDADD = $(top_builddir)/src/liblinuxsampler.la -lcppunit
107 schoenebeck 63 noinst_HEADERS = ConditionTest.h
108 schoenebeck 57 subdir = src/testcases
109     mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
110     CONFIG_HEADER = $(top_builddir)/config.h
111     CONFIG_CLEAN_FILES =
112     EXTRA_PROGRAMS = linuxsamplertest$(EXEEXT)
113     am_linuxsamplertest_OBJECTS = linuxsamplertest.$(OBJEXT) \
114 schoenebeck 63 ThreadTest.$(OBJEXT) MutexTest.$(OBJEXT) \
115     ConditionTest.$(OBJEXT)
116 schoenebeck 57 linuxsamplertest_OBJECTS = $(am_linuxsamplertest_OBJECTS)
117     linuxsamplertest_DEPENDENCIES = $(top_builddir)/src/liblinuxsampler.la
118     linuxsamplertest_LDFLAGS =
119    
120     DEFS = @DEFS@
121     DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
122     CPPFLAGS = @CPPFLAGS@
123     LDFLAGS = @LDFLAGS@
124     LIBS = @LIBS@
125     depcomp = $(SHELL) $(top_srcdir)/depcomp
126     am__depfiles_maybe = depfiles
127 schoenebeck 63 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ConditionTest.Po \
128     @AMDEP_TRUE@ ./$(DEPDIR)/MutexTest.Po ./$(DEPDIR)/ThreadTest.Po \
129 schoenebeck 57 @AMDEP_TRUE@ ./$(DEPDIR)/linuxsamplertest.Po
130     CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
131     $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
132     LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
133     $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
134     $(AM_CXXFLAGS) $(CXXFLAGS)
135     CXXLD = $(CXX)
136     CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
137     $(AM_LDFLAGS) $(LDFLAGS) -o $@
138     CXXFLAGS = @CXXFLAGS@
139     CFLAGS = @CFLAGS@
140     COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
141     $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
142     LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \
143     $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
144     CCLD = $(CC)
145     LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
146     $(AM_LDFLAGS) $(LDFLAGS) -o $@
147     DIST_SOURCES = $(linuxsamplertest_SOURCES)
148 schoenebeck 63 HEADERS = $(noinst_HEADERS)
149    
150     DIST_COMMON = $(noinst_HEADERS) Makefile.am Makefile.in
151 schoenebeck 57 SOURCES = $(linuxsamplertest_SOURCES)
152    
153     all: all-am
154    
155     .SUFFIXES:
156     .SUFFIXES: .cpp .lo .o .obj
157     $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
158     cd $(top_srcdir) && \
159     $(AUTOMAKE) --gnu src/testcases/Makefile
160     Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
161     cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
162     linuxsamplertest$(EXEEXT): $(linuxsamplertest_OBJECTS) $(linuxsamplertest_DEPENDENCIES)
163     @rm -f linuxsamplertest$(EXEEXT)
164     $(CXXLINK) $(linuxsamplertest_LDFLAGS) $(linuxsamplertest_OBJECTS) $(linuxsamplertest_LDADD) $(LIBS)
165    
166     mostlyclean-compile:
167     -rm -f *.$(OBJEXT) core *.core
168    
169     distclean-compile:
170     -rm -f *.tab.c
171    
172 schoenebeck 63 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ConditionTest.Po@am__quote@
173 schoenebeck 57 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MutexTest.Po@am__quote@
174     @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ThreadTest.Po@am__quote@
175     @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linuxsamplertest.Po@am__quote@
176    
177     distclean-depend:
178     -rm -rf ./$(DEPDIR)
179    
180     .cpp.o:
181     @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
182     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
183     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
184     $(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
185    
186     .cpp.obj:
187     @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
188     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
189     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
190     $(CXXCOMPILE) -c -o $@ `cygpath -w $<`
191    
192     .cpp.lo:
193     @AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
194     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
195     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
196     $(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
197     CXXDEPMODE = @CXXDEPMODE@
198    
199     mostlyclean-libtool:
200     -rm -f *.lo
201    
202     clean-libtool:
203     -rm -rf .libs _libs
204    
205     distclean-libtool:
206     -rm -f libtool
207     uninstall-info-am:
208    
209     ETAGS = etags
210     ETAGSFLAGS =
211    
212     tags: TAGS
213    
214     ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
215     list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
216     unique=`for i in $$list; do \
217     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
218     done | \
219     $(AWK) ' { files[$$0] = 1; } \
220     END { for (i in files) print i; }'`; \
221     mkid -fID $$unique
222    
223     TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
224     $(TAGS_FILES) $(LISP)
225     tags=; \
226     here=`pwd`; \
227     list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
228     unique=`for i in $$list; do \
229     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
230     done | \
231     $(AWK) ' { files[$$0] = 1; } \
232     END { for (i in files) print i; }'`; \
233     test -z "$(ETAGS_ARGS)$$tags$$unique" \
234     || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
235     $$tags $$unique
236    
237     GTAGS:
238     here=`$(am__cd) $(top_builddir) && pwd` \
239     && cd $(top_srcdir) \
240     && gtags -i $(GTAGS_ARGS) $$here
241    
242     distclean-tags:
243     -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
244     DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
245    
246     top_distdir = ../..
247     distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
248    
249     distdir: $(DISTFILES)
250     @list='$(DISTFILES)'; for file in $$list; do \
251     if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
252     dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
253     if test "$$dir" != "$$file" && test "$$dir" != "."; then \
254     dir="/$$dir"; \
255     $(mkinstalldirs) "$(distdir)$$dir"; \
256     else \
257     dir=''; \
258     fi; \
259     if test -d $$d/$$file; then \
260     if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
261     cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
262     fi; \
263     cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
264     else \
265     test -f $(distdir)/$$file \
266     || cp -p $$d/$$file $(distdir)/$$file \
267     || exit 1; \
268     fi; \
269     done
270     check-am: all-am
271     check: check-am
272 schoenebeck 63 all-am: Makefile $(HEADERS)
273 schoenebeck 57
274     installdirs:
275    
276     install: install-am
277     install-exec: install-exec-am
278     install-data: install-data-am
279     uninstall: uninstall-am
280    
281     install-am: all-am
282     @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
283    
284     installcheck: installcheck-am
285     install-strip:
286     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
287     INSTALL_STRIP_FLAG=-s \
288     `test -z '$(STRIP)' || \
289     echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
290     mostlyclean-generic:
291    
292     clean-generic:
293    
294     distclean-generic:
295     -rm -f Makefile $(CONFIG_CLEAN_FILES)
296    
297     maintainer-clean-generic:
298     @echo "This command is intended for maintainers to use"
299     @echo "it deletes files that may require special tools to rebuild."
300     clean: clean-am
301    
302     clean-am: clean-generic clean-libtool mostlyclean-am
303    
304     distclean: distclean-am
305    
306     distclean-am: clean-am distclean-compile distclean-depend \
307     distclean-generic distclean-libtool distclean-tags
308    
309     dvi: dvi-am
310    
311     dvi-am:
312    
313     info: info-am
314    
315     info-am:
316    
317     install-data-am:
318    
319     install-exec-am:
320    
321     install-info: install-info-am
322    
323     install-man:
324    
325     installcheck-am:
326    
327     maintainer-clean: maintainer-clean-am
328    
329     maintainer-clean-am: distclean-am maintainer-clean-generic
330    
331     mostlyclean: mostlyclean-am
332    
333     mostlyclean-am: mostlyclean-compile mostlyclean-generic \
334     mostlyclean-libtool
335    
336     uninstall-am: uninstall-info-am
337    
338     .PHONY: GTAGS all all-am check check-am clean clean-generic \
339     clean-libtool distclean distclean-compile distclean-depend \
340     distclean-generic distclean-libtool distclean-tags distdir dvi \
341     dvi-am info info-am install install-am install-data \
342     install-data-am install-exec install-exec-am install-info \
343     install-info-am install-man install-strip installcheck \
344     installcheck-am installdirs maintainer-clean \
345     maintainer-clean-generic mostlyclean mostlyclean-compile \
346     mostlyclean-generic mostlyclean-libtool tags uninstall \
347     uninstall-am uninstall-info-am
348    
349     # Tell versions [3.59,3.63) of GNU make to not export all variables.
350     # Otherwise a system limit (for SysV at least) may be exceeded.
351     .NOEXPORT:

  ViewVC Help
Powered by ViewVC