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

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

  ViewVC Help
Powered by ViewVC