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

Contents of /linuxsampler/trunk/src/audiodriver/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 123 - (show annotations) (download)
Mon Jun 14 19:33:16 2004 UTC (19 years, 10 months ago) by schoenebeck
File size: 11420 byte(s)
* src/common: added template class 'optional<>' which can be used e.g. as
  return type whenever a value might be returned, but don't has to; this
  template class pretty much acts like a pointer of the given type, but is
  much more safer than a simple pointer
* src/audiodriver: added static class AudioDeviceFactory to create audio
  devices at runtime by using a string and to obtain driver informations
  of drivers at runtime, driver classes should simply use the macro
  REGISTER_AUDIO_OUTPUT_DRIVER(DriverName,DriverClass) in their cpp file
  to register the driver to LinuxSampler (no changes needed anymore in the
  LS code to add a new audio output driver)
* src/drivers: added classes to dynamically manage driver parameters; there
  are two different kinds of parameters: parameters which are need to
  create a new device (DeviceCreationParameterX) used to e.g. create an
  audio output device or a MIDI input device and parameters which are only
  available at runtime, means when a device is already created
  (DeviceRuntimeParameterX) which will be e.g. used as audio channel
  parameters and MIDI port parameters
* src/linuxsampler.cpp: all registered audio output drivers will be shown
  on the console on startup
* src/network: implemented configuration of audio output devices via LSCP

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

  ViewVC Help
Powered by ViewVC