seal 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.yardopts +1 -0
- data/LICENSE +13 -0
- data/README.md +265 -0
- data/ext/seal/extconf.rb +45 -0
- data/include/al/al.h +724 -0
- data/include/al/alc.h +277 -0
- data/include/al/efx-presets.h +402 -0
- data/include/al/efx.h +758 -0
- data/include/mpg123/mpg123.h +1034 -0
- data/include/ogg/config_types.h +25 -0
- data/include/ogg/ogg.h +210 -0
- data/include/ogg/os_types.h +147 -0
- data/include/seal.h +23 -0
- data/include/seal/buf.h +143 -0
- data/include/seal/core.h +95 -0
- data/include/seal/efs.h +112 -0
- data/include/seal/err.h +93 -0
- data/include/seal/fmt.h +58 -0
- data/include/seal/listener.h +103 -0
- data/include/seal/raw.h +86 -0
- data/include/seal/rvb.h +520 -0
- data/include/seal/src.h +413 -0
- data/include/seal/stream.h +81 -0
- data/include/vorbis/codec.h +243 -0
- data/include/vorbis/vorbisfile.h +206 -0
- data/mpg123/AUTHORS +150 -0
- data/mpg123/COPYING +773 -0
- data/mpg123/ChangeLog +3 -0
- data/mpg123/INSTALL +111 -0
- data/mpg123/Makefile.am +99 -0
- data/mpg123/Makefile.in +1043 -0
- data/mpg123/NEWS +1200 -0
- data/mpg123/NEWS.libmpg123 +133 -0
- data/mpg123/README +203 -0
- data/mpg123/TODO +38 -0
- data/mpg123/aclocal.m4 +1168 -0
- data/mpg123/build/config.guess +1530 -0
- data/mpg123/build/config.sub +1782 -0
- data/mpg123/build/depcomp +707 -0
- data/mpg123/build/install-sh +527 -0
- data/mpg123/build/ltmain.sh +9655 -0
- data/mpg123/build/missing +330 -0
- data/mpg123/configure +20267 -0
- data/mpg123/configure.ac +2178 -0
- data/mpg123/doc/ACCURACY +2 -0
- data/mpg123/doc/BENCHMARKING +110 -0
- data/mpg123/doc/BUGS +3 -0
- data/mpg123/doc/CONTACT +17 -0
- data/mpg123/doc/LICENSE +22 -0
- data/mpg123/doc/Makefile.am +32 -0
- data/mpg123/doc/Makefile.in +490 -0
- data/mpg123/doc/PATENTS +39 -0
- data/mpg123/doc/README.3DNOW +56 -0
- data/mpg123/doc/README.gain +171 -0
- data/mpg123/doc/README.remote +218 -0
- data/mpg123/doc/ROAD_TO_LGPL +270 -0
- data/mpg123/doc/THANKS +13 -0
- data/mpg123/doc/TODO +63 -0
- data/mpg123/doc/doxy_examples.c +21 -0
- data/mpg123/doc/doxygen.conf +41 -0
- data/mpg123/doc/doxyhead.xhtml +12 -0
- data/mpg123/doc/examples/dump_seekindex.c +41 -0
- data/mpg123/doc/examples/extract_frames.c +92 -0
- data/mpg123/doc/examples/feedseek.c +238 -0
- data/mpg123/doc/examples/id3dump.c +178 -0
- data/mpg123/doc/examples/mpg123_to_wav.c +118 -0
- data/mpg123/doc/examples/mpglib.c +92 -0
- data/mpg123/doc/examples/scan.c +47 -0
- data/mpg123/doc/libmpg123_speed.txt +84 -0
- data/mpg123/equalize.dat +37 -0
- data/mpg123/libmpg123.pc.in +11 -0
- data/mpg123/m4/addrconfig.m4 +34 -0
- data/mpg123/m4/libtool.m4 +7982 -0
- data/mpg123/m4/ltoptions.m4 +384 -0
- data/mpg123/m4/ltsugar.m4 +123 -0
- data/mpg123/m4/ltversion.m4 +23 -0
- data/mpg123/m4/lt~obsolete.m4 +98 -0
- data/mpg123/makedll.sh +19 -0
- data/mpg123/man1/mpg123.1 +512 -0
- data/mpg123/mpg123.spec +68 -0
- data/mpg123/mpg123.spec.in +68 -0
- data/mpg123/ports/MSVC++/2005/libmpg123/libmpg123.vcproj +741 -0
- data/mpg123/ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj +194 -0
- data/mpg123/ports/MSVC++/2008/feedseek/feedseek.vcproj +195 -0
- data/mpg123/ports/MSVC++/2008/libmpg123/libmpg123.vcproj +1357 -0
- data/mpg123/ports/MSVC++/2008/mpg123.sln +44 -0
- data/mpg123/ports/MSVC++/2008/mpglib/mpglib.vcproj +191 -0
- data/mpg123/ports/MSVC++/2008/scan/scan.vcproj +195 -0
- data/mpg123/ports/MSVC++/2008clr/2008clr.sln +81 -0
- data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs +435 -0
- data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs +36 -0
- data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj +72 -0
- data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Program.cs +331 -0
- data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs +36 -0
- data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj +71 -0
- data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Program.cs +79 -0
- data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs +36 -0
- data/mpg123/ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj +70 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp +76 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/ReadMe.txt +165 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.cpp +91 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.h +130 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/dllmain.cpp +19 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/enum.h +218 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.cpp +48 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.h +134 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.cpp +92 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.h +132 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.cpp +138 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.h +152 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp +896 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.h +953 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc +102 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj +328 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/resource.h +14 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.cpp +8 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.h +38 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.cpp +166 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.h +265 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/targetver.h +24 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.cpp +67 -0
- data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.h +111 -0
- data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj +90 -0
- data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters +6 -0
- data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj +95 -0
- data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters +6 -0
- data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj +960 -0
- data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj.user +3 -0
- data/mpg123/ports/MSVC++/2010/libmpg123/yasm.exe +0 -0
- data/mpg123/ports/MSVC++/2010/mpg123.sln +38 -0
- data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj +93 -0
- data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj.filters +6 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H +15 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H +139 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H +206 -0
- data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H +167 -0
- data/mpg123/ports/MSVC++/CMP3Stream/README +4 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP +462 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP +122 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP +35 -0
- data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP +586 -0
- data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE +0 -0
- data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj +245 -0
- data/mpg123/ports/MSVC++/config.h +35 -0
- data/mpg123/ports/MSVC++/examples/feedseek.c +240 -0
- data/mpg123/ports/MSVC++/examples/scan.c +47 -0
- data/mpg123/ports/MSVC++/mpg123.h +46 -0
- data/mpg123/ports/MSVC++/msvc.c +59 -0
- data/mpg123/ports/README +26 -0
- data/mpg123/ports/Sony_PSP/Makefile.psp +38 -0
- data/mpg123/ports/Sony_PSP/README +11 -0
- data/mpg123/ports/Sony_PSP/config.h +368 -0
- data/mpg123/ports/Sony_PSP/readers.c.patch +2 -0
- data/mpg123/ports/Xcode/config.h +197 -0
- data/mpg123/ports/Xcode/mpg123.h +17 -0
- data/mpg123/ports/Xcode/mpg123.xcodeproj/project.pbxproj +670 -0
- data/mpg123/ports/mpg123_.pas +478 -0
- data/mpg123/scripts/benchmark-cpu.pl +56 -0
- data/mpg123/scripts/tag_lyrics.py +76 -0
- data/mpg123/src/Makefile.am +186 -0
- data/mpg123/src/Makefile.in +1097 -0
- data/mpg123/src/audio.c +725 -0
- data/mpg123/src/audio.h +106 -0
- data/mpg123/src/buffer.c +312 -0
- data/mpg123/src/buffer.h +45 -0
- data/mpg123/src/common.c +240 -0
- data/mpg123/src/common.h +29 -0
- data/mpg123/src/config.h.in +436 -0
- data/mpg123/src/control_generic.c +809 -0
- data/mpg123/src/equalizer.c +48 -0
- data/mpg123/src/genre.c +271 -0
- data/mpg123/src/genre.h +15 -0
- data/mpg123/src/getlopt.c +148 -0
- data/mpg123/src/getlopt.h +77 -0
- data/mpg123/src/httpget.c +700 -0
- data/mpg123/src/httpget.h +66 -0
- data/mpg123/src/legacy_module.c +74 -0
- data/mpg123/src/libmpg123/Makefile.am +141 -0
- data/mpg123/src/libmpg123/Makefile.in +919 -0
- data/mpg123/src/libmpg123/compat.c +138 -0
- data/mpg123/src/libmpg123/compat.h +178 -0
- data/mpg123/src/libmpg123/dct36_3dnow.S +505 -0
- data/mpg123/src/libmpg123/dct36_3dnowext.S +512 -0
- data/mpg123/src/libmpg123/dct64.c +174 -0
- data/mpg123/src/libmpg123/dct64_3dnow.S +712 -0
- data/mpg123/src/libmpg123/dct64_3dnowext.S +714 -0
- data/mpg123/src/libmpg123/dct64_altivec.c +315 -0
- data/mpg123/src/libmpg123/dct64_i386.c +336 -0
- data/mpg123/src/libmpg123/dct64_i486.c +342 -0
- data/mpg123/src/libmpg123/dct64_mmx.S +811 -0
- data/mpg123/src/libmpg123/dct64_neon.S +297 -0
- data/mpg123/src/libmpg123/dct64_neon_float.S +270 -0
- data/mpg123/src/libmpg123/dct64_sse.S +454 -0
- data/mpg123/src/libmpg123/dct64_sse_float.S +401 -0
- data/mpg123/src/libmpg123/dct64_x86_64.S +464 -0
- data/mpg123/src/libmpg123/dct64_x86_64_float.S +426 -0
- data/mpg123/src/libmpg123/debug.h +171 -0
- data/mpg123/src/libmpg123/decode.h +268 -0
- data/mpg123/src/libmpg123/dither.c +119 -0
- data/mpg123/src/libmpg123/dither.h +23 -0
- data/mpg123/src/libmpg123/equalizer.c +17 -0
- data/mpg123/src/libmpg123/equalizer_3dnow.S +70 -0
- data/mpg123/src/libmpg123/feature.c +106 -0
- data/mpg123/src/libmpg123/format.c +521 -0
- data/mpg123/src/libmpg123/frame.c +1046 -0
- data/mpg123/src/libmpg123/frame.h +410 -0
- data/mpg123/src/libmpg123/gapless.h +119 -0
- data/mpg123/src/libmpg123/getbits.h +100 -0
- data/mpg123/src/libmpg123/getcpuflags.S +91 -0
- data/mpg123/src/libmpg123/getcpuflags.h +47 -0
- data/mpg123/src/libmpg123/huffman.h +340 -0
- data/mpg123/src/libmpg123/icy.c +32 -0
- data/mpg123/src/libmpg123/icy.h +38 -0
- data/mpg123/src/libmpg123/icy2utf8.c +438 -0
- data/mpg123/src/libmpg123/icy2utf8.h +10 -0
- data/mpg123/src/libmpg123/id3.c +999 -0
- data/mpg123/src/libmpg123/id3.h +43 -0
- data/mpg123/src/libmpg123/index.c +134 -0
- data/mpg123/src/libmpg123/index.h +59 -0
- data/mpg123/src/libmpg123/intsym.h +256 -0
- data/mpg123/src/libmpg123/l12_integer_tables.h +278 -0
- data/mpg123/src/libmpg123/l2tables.h +164 -0
- data/mpg123/src/libmpg123/l3_integer_tables.h +1002 -0
- data/mpg123/src/libmpg123/layer1.c +155 -0
- data/mpg123/src/libmpg123/layer2.c +371 -0
- data/mpg123/src/libmpg123/layer3.c +2053 -0
- data/mpg123/src/libmpg123/lfs_alias.c +252 -0
- data/mpg123/src/libmpg123/lfs_wrap.c +751 -0
- data/mpg123/src/libmpg123/libmpg123.c +1607 -0
- data/mpg123/src/libmpg123/mangle.h +74 -0
- data/mpg123/src/libmpg123/mpeghead.h +87 -0
- data/mpg123/src/libmpg123/mpg123.h.in +1075 -0
- data/mpg123/src/libmpg123/mpg123lib_intern.h +338 -0
- data/mpg123/src/libmpg123/ntom.c +148 -0
- data/mpg123/src/libmpg123/optimize.c +964 -0
- data/mpg123/src/libmpg123/optimize.h +219 -0
- data/mpg123/src/libmpg123/parse.c +1179 -0
- data/mpg123/src/libmpg123/parse.h +25 -0
- data/mpg123/src/libmpg123/reader.h +137 -0
- data/mpg123/src/libmpg123/readers.c +1235 -0
- data/mpg123/src/libmpg123/sample.h +152 -0
- data/mpg123/src/libmpg123/stringbuf.c +163 -0
- data/mpg123/src/libmpg123/synth.c +816 -0
- data/mpg123/src/libmpg123/synth.h +196 -0
- data/mpg123/src/libmpg123/synth_3dnow.S +318 -0
- data/mpg123/src/libmpg123/synth_3dnowext.S +6 -0
- data/mpg123/src/libmpg123/synth_8bit.c +142 -0
- data/mpg123/src/libmpg123/synth_8bit.h +86 -0
- data/mpg123/src/libmpg123/synth_altivec.c +1057 -0
- data/mpg123/src/libmpg123/synth_arm.S +271 -0
- data/mpg123/src/libmpg123/synth_arm_accurate.S +287 -0
- data/mpg123/src/libmpg123/synth_i486.c +252 -0
- data/mpg123/src/libmpg123/synth_i586.S +336 -0
- data/mpg123/src/libmpg123/synth_i586_dither.S +375 -0
- data/mpg123/src/libmpg123/synth_mmx.S +125 -0
- data/mpg123/src/libmpg123/synth_mono.h +64 -0
- data/mpg123/src/libmpg123/synth_neon.S +123 -0
- data/mpg123/src/libmpg123/synth_neon_accurate.S +173 -0
- data/mpg123/src/libmpg123/synth_neon_float.S +149 -0
- data/mpg123/src/libmpg123/synth_neon_s32.S +168 -0
- data/mpg123/src/libmpg123/synth_ntom.h +213 -0
- data/mpg123/src/libmpg123/synth_real.c +404 -0
- data/mpg123/src/libmpg123/synth_s32.c +411 -0
- data/mpg123/src/libmpg123/synth_sse.S +6 -0
- data/mpg123/src/libmpg123/synth_sse3d.h +246 -0
- data/mpg123/src/libmpg123/synth_sse_accurate.S +294 -0
- data/mpg123/src/libmpg123/synth_sse_float.S +241 -0
- data/mpg123/src/libmpg123/synth_sse_s32.S +306 -0
- data/mpg123/src/libmpg123/synth_stereo_neon.S +175 -0
- data/mpg123/src/libmpg123/synth_stereo_neon_accurate.S +262 -0
- data/mpg123/src/libmpg123/synth_stereo_neon_float.S +220 -0
- data/mpg123/src/libmpg123/synth_stereo_neon_s32.S +247 -0
- data/mpg123/src/libmpg123/synth_stereo_sse_accurate.S +508 -0
- data/mpg123/src/libmpg123/synth_stereo_sse_float.S +416 -0
- data/mpg123/src/libmpg123/synth_stereo_sse_s32.S +540 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64.S +335 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64_accurate.S +454 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64_float.S +396 -0
- data/mpg123/src/libmpg123/synth_stereo_x86_64_s32.S +473 -0
- data/mpg123/src/libmpg123/synth_x86_64.S +244 -0
- data/mpg123/src/libmpg123/synth_x86_64_accurate.S +301 -0
- data/mpg123/src/libmpg123/synth_x86_64_float.S +259 -0
- data/mpg123/src/libmpg123/synth_x86_64_s32.S +312 -0
- data/mpg123/src/libmpg123/synths.h +52 -0
- data/mpg123/src/libmpg123/tabinit.c +294 -0
- data/mpg123/src/libmpg123/tabinit_mmx.S +210 -0
- data/mpg123/src/libmpg123/testcpu.c +35 -0
- data/mpg123/src/libmpg123/true.h +14 -0
- data/mpg123/src/local.c +63 -0
- data/mpg123/src/local.h +21 -0
- data/mpg123/src/metaprint.c +373 -0
- data/mpg123/src/metaprint.h +17 -0
- data/mpg123/src/module.c +306 -0
- data/mpg123/src/module.h +48 -0
- data/mpg123/src/mpg123.c +1405 -0
- data/mpg123/src/mpg123app.h +171 -0
- data/mpg123/src/output/Makefile.am +213 -0
- data/mpg123/src/output/Makefile.in +1238 -0
- data/mpg123/src/output/aix.c +300 -0
- data/mpg123/src/output/alib.c +209 -0
- data/mpg123/src/output/alsa.c +297 -0
- data/mpg123/src/output/arts.c +117 -0
- data/mpg123/src/output/coreaudio.c +370 -0
- data/mpg123/src/output/dummy.c +78 -0
- data/mpg123/src/output/esd.c +167 -0
- data/mpg123/src/output/hp.c +184 -0
- data/mpg123/src/output/jack.c +450 -0
- data/mpg123/src/output/mint.c +197 -0
- data/mpg123/src/output/nas.c +335 -0
- data/mpg123/src/output/openal.c +197 -0
- data/mpg123/src/output/os2.c +665 -0
- data/mpg123/src/output/oss.c +319 -0
- data/mpg123/src/output/portaudio.c +255 -0
- data/mpg123/src/output/pulse.c +164 -0
- data/mpg123/src/output/sdl.c +206 -0
- data/mpg123/src/output/sgi.c +213 -0
- data/mpg123/src/output/sndio.c +161 -0
- data/mpg123/src/output/sun.c +281 -0
- data/mpg123/src/output/win32.c +229 -0
- data/mpg123/src/playlist.c +596 -0
- data/mpg123/src/playlist.h +52 -0
- data/mpg123/src/resolver.c +319 -0
- data/mpg123/src/resolver.h +25 -0
- data/mpg123/src/sfifo.c +146 -0
- data/mpg123/src/sfifo.h +95 -0
- data/mpg123/src/streamdump.c +74 -0
- data/mpg123/src/streamdump.h +20 -0
- data/mpg123/src/term.c +479 -0
- data/mpg123/src/term.h +81 -0
- data/mpg123/src/tests/noise.c +52 -0
- data/mpg123/src/tests/plain_id3.c +109 -0
- data/mpg123/src/tests/seek_accuracy.c +261 -0
- data/mpg123/src/tests/seek_whence.c +56 -0
- data/mpg123/src/tests/testtext.h +34 -0
- data/mpg123/src/tests/text.c +80 -0
- data/mpg123/src/wav.c +464 -0
- data/mpg123/src/wavhead.h +68 -0
- data/mpg123/src/win32_net.c +599 -0
- data/mpg123/src/win32_support.c +191 -0
- data/mpg123/src/win32_support.h +152 -0
- data/mpg123/src/xfermem.c +321 -0
- data/mpg123/src/xfermem.h +74 -0
- data/mpg123/windows-builds.sh +137 -0
- data/msvc/lib/OpenAL32.lib +0 -0
- data/spec/fixtures/heal.ogg +0 -0
- data/spec/fixtures/tone_up.wav +0 -0
- data/spec/seal/buffer_spec.rb +37 -0
- data/spec/seal/core_spec.rb +29 -0
- data/spec/seal/effect_slot_spec.rb +38 -0
- data/spec/seal/listener_spec.rb +33 -0
- data/spec/seal/reverb_spec.rb +51 -0
- data/spec/seal/source_spec.rb +370 -0
- data/spec/seal/stream_spec.rb +38 -0
- data/spec/spec_helper.rb +45 -0
- data/spec/support/attribute_examples.rb +75 -0
- data/spec/support/audio_object_with_format.rb +27 -0
- data/spec/support/movable_object.rb +22 -0
- data/src/libogg/bitwise.c +857 -0
- data/src/libogg/framing.c +2093 -0
- data/src/libvorbis/backends.h +144 -0
- data/src/libvorbis/bitrate.c +253 -0
- data/src/libvorbis/bitrate.h +59 -0
- data/src/libvorbis/block.c +1046 -0
- data/src/libvorbis/codebook.c +484 -0
- data/src/libvorbis/codebook.h +119 -0
- data/src/libvorbis/codec_internal.h +167 -0
- data/src/libvorbis/envelope.c +375 -0
- data/src/libvorbis/envelope.h +80 -0
- data/src/libvorbis/floor0.c +221 -0
- data/src/libvorbis/floor1.c +1100 -0
- data/src/libvorbis/highlevel.h +58 -0
- data/src/libvorbis/info.c +668 -0
- data/src/libvorbis/lookup.c +94 -0
- data/src/libvorbis/lookup.h +32 -0
- data/src/libvorbis/lookup_data.h +192 -0
- data/src/libvorbis/lpc.c +160 -0
- data/src/libvorbis/lpc.h +29 -0
- data/src/libvorbis/lsp.c +456 -0
- data/src/libvorbis/lsp.h +28 -0
- data/src/libvorbis/mapping0.c +816 -0
- data/src/libvorbis/masking.h +785 -0
- data/src/libvorbis/mdct.c +563 -0
- data/src/libvorbis/mdct.h +71 -0
- data/src/libvorbis/misc.h +57 -0
- data/src/libvorbis/os.h +186 -0
- data/src/libvorbis/psy.c +1206 -0
- data/src/libvorbis/psy.h +154 -0
- data/src/libvorbis/registry.c +45 -0
- data/src/libvorbis/registry.h +32 -0
- data/src/libvorbis/res0.c +889 -0
- data/src/libvorbis/scales.h +90 -0
- data/src/libvorbis/sharedbook.c +579 -0
- data/src/libvorbis/smallft.c +1255 -0
- data/src/libvorbis/smallft.h +34 -0
- data/src/libvorbis/synthesis.c +184 -0
- data/src/libvorbis/vorbisfile.c +2337 -0
- data/src/libvorbis/window.c +2135 -0
- data/src/libvorbis/window.h +26 -0
- data/src/rubyext.c +2329 -0
- data/src/seal/buf.c +124 -0
- data/src/seal/core.c +283 -0
- data/src/seal/efs.c +74 -0
- data/src/seal/err.c +118 -0
- data/src/seal/fmt.c +86 -0
- data/src/seal/listener.c +111 -0
- data/src/seal/mpg.c +174 -0
- data/src/seal/mpg.h +24 -0
- data/src/seal/ov.c +180 -0
- data/src/seal/ov.h +22 -0
- data/src/seal/raw.c +59 -0
- data/src/seal/reader.c +102 -0
- data/src/seal/reader.h +59 -0
- data/src/seal/rvb.c +368 -0
- data/src/seal/src.c +654 -0
- data/src/seal/stream.c +109 -0
- data/src/seal/threading.c +66 -0
- data/src/seal/threading.h +20 -0
- data/src/seal/wav.c +297 -0
- data/src/seal/wav.h +23 -0
- data/src/win32api.rb +29 -0
- metadata +563 -0
@@ -0,0 +1,171 @@
|
|
1
|
+
/*
|
2
|
+
mpg123: main code of the program (not of the decoder...)
|
3
|
+
|
4
|
+
copyright 1995-2009 by the mpg123 project - free software under the terms of the LGPL 2.1
|
5
|
+
see COPYING and AUTHORS files in distribution or http://mpg123.org
|
6
|
+
initially written by Michael Hipp
|
7
|
+
|
8
|
+
mpg123 defines
|
9
|
+
used source: musicout.h from mpegaudio package
|
10
|
+
*/
|
11
|
+
|
12
|
+
#ifndef MPG123_H
|
13
|
+
#define MPG123_H
|
14
|
+
#include "config.h"
|
15
|
+
|
16
|
+
/* everyone needs it */
|
17
|
+
#include "compat.h"
|
18
|
+
/* import DLL symbols on windows */
|
19
|
+
|
20
|
+
#include "xfermem.h"
|
21
|
+
#include "httpget.h"
|
22
|
+
#ifndef BUILDING_OUTPUT_MODULES
|
23
|
+
#include "win32_support.h"
|
24
|
+
#endif
|
25
|
+
|
26
|
+
#if defined(WIN32) && defined(DYNAMIC_BUILD)
|
27
|
+
#define LINK_MPG123_DLL
|
28
|
+
#endif
|
29
|
+
#include "mpg123.h"
|
30
|
+
#define MPG123_REMOTE
|
31
|
+
#define REMOTE_BUFFER_SIZE 2048
|
32
|
+
#define MAXOUTBURST 32768
|
33
|
+
|
34
|
+
#ifdef __GNUC__
|
35
|
+
#define INLINE inline
|
36
|
+
#else
|
37
|
+
#define INLINE
|
38
|
+
#endif
|
39
|
+
|
40
|
+
#include "audio.h"
|
41
|
+
#include "local.h"
|
42
|
+
|
43
|
+
extern size_t bufferblock;
|
44
|
+
|
45
|
+
#define VERBOSE_MAX 3
|
46
|
+
|
47
|
+
extern char* binpath; /* argv[0], actually... */
|
48
|
+
|
49
|
+
struct parameter
|
50
|
+
{
|
51
|
+
int aggressive; /* renice to max. priority */
|
52
|
+
int shuffle; /* shuffle/random play */
|
53
|
+
int remote; /* remote operation */
|
54
|
+
int remote_err; /* remote operation to stderr */
|
55
|
+
int outmode; /* where to out the decoded sampels */
|
56
|
+
int quiet; /* shut up! */
|
57
|
+
int xterm_title; /* Change xterm title to song names? */
|
58
|
+
long usebuffer; /* second level buffer size */
|
59
|
+
int verbose; /* verbose level */
|
60
|
+
char* output_module; /* audio output module to use */
|
61
|
+
char* output_device; /* audio output device to use */
|
62
|
+
int output_flags; /* legacy output destination for AIX/HP/Sun */
|
63
|
+
#ifdef HAVE_TERMIOS
|
64
|
+
int term_ctrl;
|
65
|
+
/* Those are supposed to be single characters. */
|
66
|
+
char* term_usr1;
|
67
|
+
char* term_usr2;
|
68
|
+
#endif
|
69
|
+
int checkrange;
|
70
|
+
int force_reopen;
|
71
|
+
int test_cpu;
|
72
|
+
long realtime;
|
73
|
+
#ifdef HAVE_WINDOWS_H
|
74
|
+
int w32_priority;
|
75
|
+
#endif
|
76
|
+
char *filename;
|
77
|
+
long listentry; /* possibility to choose playback of one entry in playlist (0: off, > 0 : select, < 0; just show list*/
|
78
|
+
char* listname; /* name of playlist */
|
79
|
+
int long_id3;
|
80
|
+
int list_cpu;
|
81
|
+
char *cpu;
|
82
|
+
#ifdef FIFO
|
83
|
+
char* fifo;
|
84
|
+
#endif
|
85
|
+
long timeout; /* timeout for reading in seconds */
|
86
|
+
long loop; /* looping of tracks */
|
87
|
+
int delay;
|
88
|
+
int index; /* index / scan through files before playback */
|
89
|
+
/* parameters for mpg123 handle */
|
90
|
+
int down_sample;
|
91
|
+
long rva; /* (which) rva to do: 0: nothing, 1: radio/mix/track 2: album/audiophile */
|
92
|
+
long halfspeed;
|
93
|
+
long doublespeed;
|
94
|
+
long start_frame; /* frame offset to begin with */
|
95
|
+
long frame_number; /* number of frames to decode */
|
96
|
+
long outscale;
|
97
|
+
int flags;
|
98
|
+
long force_rate;
|
99
|
+
int talk_icy;
|
100
|
+
long resync_limit;
|
101
|
+
int smooth;
|
102
|
+
double pitch; /* <0 or >0, 0.05 for 5% speedup. */
|
103
|
+
unsigned long appflags; /* various switches for mpg123 application */
|
104
|
+
char *proxyurl;
|
105
|
+
int keep_open; /* Whether to keep files open after end reached, for remote control mode, perhaps terminal control, too. */
|
106
|
+
int force_utf8; /* Regardless of environment, always print out verbatim UTF for metadata. */
|
107
|
+
long index_size; /* size of frame index */
|
108
|
+
char *force_encoding;
|
109
|
+
double preload; /* buffer preload size (fraction of full buffer) */
|
110
|
+
long preframes;
|
111
|
+
long gain; /* audio output gain, for selected outputs */
|
112
|
+
char* streamdump;
|
113
|
+
long icy_interval;
|
114
|
+
};
|
115
|
+
|
116
|
+
enum mpg123app_flags
|
117
|
+
{
|
118
|
+
MPG123APP_IGNORE_MIME = 0x01
|
119
|
+
,MPG123APP_LYRICS = 0x02
|
120
|
+
};
|
121
|
+
|
122
|
+
/* shortcut to check application flags */
|
123
|
+
#define APPFLAG(a) (param.appflags & (a))
|
124
|
+
|
125
|
+
extern char *equalfile;
|
126
|
+
extern off_t framenum;
|
127
|
+
extern struct httpdata htd;
|
128
|
+
|
129
|
+
extern int buffer_fd[2];
|
130
|
+
extern txfermem *buffermem;
|
131
|
+
extern int buffer_pid;
|
132
|
+
|
133
|
+
#ifndef NOXFERMEM
|
134
|
+
extern void buffer_loop(audio_output_t *ao,sigset_t *oldsigset);
|
135
|
+
#endif
|
136
|
+
|
137
|
+
extern int OutputDescriptor;
|
138
|
+
|
139
|
+
#ifdef VARMODESUPPORT
|
140
|
+
extern int varmode;
|
141
|
+
extern int playlimit;
|
142
|
+
#endif
|
143
|
+
|
144
|
+
/* why extern? */
|
145
|
+
extern void prepare_audioinfo(mpg123_handle *mh, audio_output_t *ao);
|
146
|
+
extern int play_frame(void);
|
147
|
+
|
148
|
+
extern int control_generic(mpg123_handle *fr);
|
149
|
+
|
150
|
+
/* Eh... I see duplicated definitions. Clean up after merge! */
|
151
|
+
extern int cdr_open(audio_output_t *);
|
152
|
+
extern int au_open(audio_output_t *);
|
153
|
+
extern int wav_open(audio_output_t *);
|
154
|
+
extern int wav_write(unsigned char *buf,int len);
|
155
|
+
extern int cdr_close(void);
|
156
|
+
extern int au_close(void);
|
157
|
+
extern int wav_close(void);
|
158
|
+
|
159
|
+
extern struct parameter param;
|
160
|
+
|
161
|
+
/* avoid the SIGINT in terminal control */
|
162
|
+
void next_track(void);
|
163
|
+
void prev_track(void);
|
164
|
+
int open_track(char *fname);
|
165
|
+
void close_track(void);
|
166
|
+
void set_intflag(void);
|
167
|
+
|
168
|
+
/* equalizer... success is 0, failure -1 */
|
169
|
+
int load_equalizer(mpg123_handle *mh);
|
170
|
+
|
171
|
+
#endif
|
@@ -0,0 +1,213 @@
|
|
1
|
+
## Makefile.am: produce Makefile.in from this
|
2
|
+
|
3
|
+
## copyright by the mpg123 project - free software under the terms of the LGPL 2.1
|
4
|
+
## see COPYING and AUTHORS files in distribution or http://www.mpg123.org
|
5
|
+
## initially written by Nicholas J. Humfrey
|
6
|
+
|
7
|
+
#AM_CPPFLAGS = -I$(top_srcdir)/src/libmpg123 -I$(top_srcdir)/src
|
8
|
+
INCLUDES = $(LTDLINCL) -I$(top_builddir)/src -I$(top_builddir)/src/libmpg123 -I$(top_srcdir)/src -I$(top_srcdir)/src/libmpg123
|
9
|
+
|
10
|
+
#Do not include uneeded headers from mpg123app.h
|
11
|
+
AM_CPPFLAGS = -DBUILDING_OUTPUT_MODULES=1
|
12
|
+
|
13
|
+
if HAVE_MODULES
|
14
|
+
|
15
|
+
pkglib_LTLIBRARIES =
|
16
|
+
|
17
|
+
# These are not tested and _very_ likely need work: aix alib hp os2 sgi mint
|
18
|
+
|
19
|
+
# Use that sh/perl script to generate the module entries:
|
20
|
+
#for i in alsa coreaudio esd jack nas oss portaudio pulse sdl sndio sun win32 aix alib arts hp os2 sgi mint openal dummy; do echo $i; done |
|
21
|
+
#perl -ne 'chomp; $big = uc($_); print <<EOT;
|
22
|
+
#
|
23
|
+
#if HAVE_$big
|
24
|
+
#pkglib_LTLIBRARIES += output_$_.la
|
25
|
+
#output_${_}_la_SOURCES = $_.c
|
26
|
+
#output_${_}_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '"'"'^mpg123_'"'"' \@${big}_LDFLAGS\@
|
27
|
+
#output_${_}_la_CFLAGS = \@${big}_CFLAGS\@
|
28
|
+
#output_${_}_la_LIBADD = \@${big}_LIBS\@
|
29
|
+
#endif
|
30
|
+
#EOT
|
31
|
+
#'
|
32
|
+
|
33
|
+
if HAVE_ALSA
|
34
|
+
pkglib_LTLIBRARIES += output_alsa.la
|
35
|
+
output_alsa_la_SOURCES = alsa.c
|
36
|
+
output_alsa_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @ALSA_LDFLAGS@
|
37
|
+
output_alsa_la_CFLAGS = @ALSA_CFLAGS@
|
38
|
+
output_alsa_la_LIBADD = @ALSA_LIBS@
|
39
|
+
endif
|
40
|
+
|
41
|
+
if HAVE_COREAUDIO
|
42
|
+
pkglib_LTLIBRARIES += output_coreaudio.la
|
43
|
+
output_coreaudio_la_SOURCES = coreaudio.c
|
44
|
+
output_coreaudio_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @COREAUDIO_LDFLAGS@
|
45
|
+
output_coreaudio_la_CFLAGS = @COREAUDIO_CFLAGS@
|
46
|
+
output_coreaudio_la_LIBADD = @COREAUDIO_LIBS@
|
47
|
+
endif
|
48
|
+
|
49
|
+
if HAVE_ESD
|
50
|
+
pkglib_LTLIBRARIES += output_esd.la
|
51
|
+
output_esd_la_SOURCES = esd.c
|
52
|
+
output_esd_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @ESD_LDFLAGS@
|
53
|
+
output_esd_la_CFLAGS = @ESD_CFLAGS@
|
54
|
+
output_esd_la_LIBADD = @ESD_LIBS@
|
55
|
+
endif
|
56
|
+
|
57
|
+
if HAVE_JACK
|
58
|
+
pkglib_LTLIBRARIES += output_jack.la
|
59
|
+
output_jack_la_SOURCES = jack.c
|
60
|
+
output_jack_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @JACK_LDFLAGS@
|
61
|
+
output_jack_la_CFLAGS = @JACK_CFLAGS@
|
62
|
+
output_jack_la_LIBADD = @JACK_LIBS@
|
63
|
+
endif
|
64
|
+
|
65
|
+
if HAVE_NAS
|
66
|
+
pkglib_LTLIBRARIES += output_nas.la
|
67
|
+
output_nas_la_SOURCES = nas.c
|
68
|
+
output_nas_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @NAS_LDFLAGS@
|
69
|
+
output_nas_la_CFLAGS = @NAS_CFLAGS@
|
70
|
+
output_nas_la_LIBADD = @NAS_LIBS@
|
71
|
+
endif
|
72
|
+
|
73
|
+
if HAVE_OSS
|
74
|
+
pkglib_LTLIBRARIES += output_oss.la
|
75
|
+
output_oss_la_SOURCES = oss.c
|
76
|
+
output_oss_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @OSS_LDFLAGS@
|
77
|
+
output_oss_la_CFLAGS = @OSS_CFLAGS@
|
78
|
+
output_oss_la_LIBADD = @OSS_LIBS@
|
79
|
+
endif
|
80
|
+
|
81
|
+
if HAVE_PORTAUDIO
|
82
|
+
pkglib_LTLIBRARIES += output_portaudio.la
|
83
|
+
output_portaudio_la_SOURCES = portaudio.c
|
84
|
+
output_portaudio_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @PORTAUDIO_LDFLAGS@
|
85
|
+
output_portaudio_la_CFLAGS = @PORTAUDIO_CFLAGS@
|
86
|
+
output_portaudio_la_LIBADD = @PORTAUDIO_LIBS@
|
87
|
+
endif
|
88
|
+
|
89
|
+
if HAVE_PULSE
|
90
|
+
pkglib_LTLIBRARIES += output_pulse.la
|
91
|
+
output_pulse_la_SOURCES = pulse.c
|
92
|
+
output_pulse_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @PULSE_LDFLAGS@
|
93
|
+
output_pulse_la_CFLAGS = @PULSE_CFLAGS@
|
94
|
+
output_pulse_la_LIBADD = @PULSE_LIBS@
|
95
|
+
endif
|
96
|
+
|
97
|
+
if HAVE_SDL
|
98
|
+
pkglib_LTLIBRARIES += output_sdl.la
|
99
|
+
output_sdl_la_SOURCES = sdl.c
|
100
|
+
output_sdl_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @SDL_LDFLAGS@
|
101
|
+
output_sdl_la_CFLAGS = @SDL_CFLAGS@
|
102
|
+
output_sdl_la_LIBADD = @SDL_LIBS@
|
103
|
+
endif
|
104
|
+
|
105
|
+
if HAVE_SNDIO
|
106
|
+
pkglib_LTLIBRARIES += output_sndio.la
|
107
|
+
output_sndio_la_SOURCES = sndio.c
|
108
|
+
output_sndio_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @SNDIO_LDFLAGS@
|
109
|
+
output_sndio_la_CFLAGS = @SNDIO_CFLAGS@
|
110
|
+
output_sndio_la_LIBADD = @SNDIO_LIBS@
|
111
|
+
endif
|
112
|
+
|
113
|
+
if HAVE_SUN
|
114
|
+
pkglib_LTLIBRARIES += output_sun.la
|
115
|
+
output_sun_la_SOURCES = sun.c
|
116
|
+
output_sun_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @SUN_LDFLAGS@
|
117
|
+
output_sun_la_CFLAGS = @SUN_CFLAGS@
|
118
|
+
output_sun_la_LIBADD = @SUN_LIBS@
|
119
|
+
endif
|
120
|
+
|
121
|
+
if HAVE_WIN32
|
122
|
+
pkglib_LTLIBRARIES += output_win32.la
|
123
|
+
output_win32_la_SOURCES = win32.c
|
124
|
+
output_win32_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @WIN32_LDFLAGS@
|
125
|
+
output_win32_la_CFLAGS = @WIN32_CFLAGS@
|
126
|
+
output_win32_la_LIBADD = @WIN32_LIBS@
|
127
|
+
endif
|
128
|
+
|
129
|
+
if HAVE_AIX
|
130
|
+
pkglib_LTLIBRARIES += output_aix.la
|
131
|
+
output_aix_la_SOURCES = aix.c
|
132
|
+
output_aix_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @AIX_LDFLAGS@
|
133
|
+
output_aix_la_CFLAGS = @AIX_CFLAGS@
|
134
|
+
output_aix_la_LIBADD = @AIX_LIBS@
|
135
|
+
endif
|
136
|
+
|
137
|
+
if HAVE_ALIB
|
138
|
+
pkglib_LTLIBRARIES += output_alib.la
|
139
|
+
output_alib_la_SOURCES = alib.c
|
140
|
+
output_alib_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @ALIB_LDFLAGS@
|
141
|
+
output_alib_la_CFLAGS = @ALIB_CFLAGS@
|
142
|
+
output_alib_la_LIBADD = @ALIB_LIBS@
|
143
|
+
endif
|
144
|
+
|
145
|
+
if HAVE_ARTS
|
146
|
+
pkglib_LTLIBRARIES += output_arts.la
|
147
|
+
output_arts_la_SOURCES = arts.c
|
148
|
+
output_arts_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @ARTS_LDFLAGS@
|
149
|
+
output_arts_la_CFLAGS = @ARTS_CFLAGS@
|
150
|
+
output_arts_la_LIBADD = @ARTS_LIBS@
|
151
|
+
endif
|
152
|
+
|
153
|
+
if HAVE_HP
|
154
|
+
pkglib_LTLIBRARIES += output_hp.la
|
155
|
+
output_hp_la_SOURCES = hp.c
|
156
|
+
output_hp_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @HP_LDFLAGS@
|
157
|
+
output_hp_la_CFLAGS = @HP_CFLAGS@
|
158
|
+
output_hp_la_LIBADD = @HP_LIBS@
|
159
|
+
endif
|
160
|
+
|
161
|
+
if HAVE_OS2
|
162
|
+
pkglib_LTLIBRARIES += output_os2.la
|
163
|
+
output_os2_la_SOURCES = os2.c
|
164
|
+
output_os2_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @OS2_LDFLAGS@
|
165
|
+
output_os2_la_CFLAGS = @OS2_CFLAGS@
|
166
|
+
output_os2_la_LIBADD = @OS2_LIBS@
|
167
|
+
endif
|
168
|
+
|
169
|
+
if HAVE_SGI
|
170
|
+
pkglib_LTLIBRARIES += output_sgi.la
|
171
|
+
output_sgi_la_SOURCES = sgi.c
|
172
|
+
output_sgi_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @SGI_LDFLAGS@
|
173
|
+
output_sgi_la_CFLAGS = @SGI_CFLAGS@
|
174
|
+
output_sgi_la_LIBADD = @SGI_LIBS@
|
175
|
+
endif
|
176
|
+
|
177
|
+
if HAVE_MINT
|
178
|
+
pkglib_LTLIBRARIES += output_mint.la
|
179
|
+
output_mint_la_SOURCES = mint.c
|
180
|
+
output_mint_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @MINT_LDFLAGS@
|
181
|
+
output_mint_la_CFLAGS = @MINT_CFLAGS@
|
182
|
+
output_mint_la_LIBADD = @MINT_LIBS@
|
183
|
+
endif
|
184
|
+
|
185
|
+
if HAVE_OPENAL
|
186
|
+
pkglib_LTLIBRARIES += output_openal.la
|
187
|
+
output_openal_la_SOURCES = openal.c
|
188
|
+
output_openal_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @OPENAL_LDFLAGS@
|
189
|
+
output_openal_la_CFLAGS = @OPENAL_CFLAGS@
|
190
|
+
output_openal_la_LIBADD = @OPENAL_LIBS@
|
191
|
+
endif
|
192
|
+
|
193
|
+
if HAVE_DUMMY
|
194
|
+
pkglib_LTLIBRARIES += output_dummy.la
|
195
|
+
output_dummy_la_SOURCES = dummy.c
|
196
|
+
output_dummy_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @DUMMY_LDFLAGS@
|
197
|
+
output_dummy_la_CFLAGS = @DUMMY_CFLAGS@
|
198
|
+
output_dummy_la_LIBADD = @DUMMY_LIBS@
|
199
|
+
endif
|
200
|
+
|
201
|
+
else
|
202
|
+
|
203
|
+
# Static build of one module only.
|
204
|
+
|
205
|
+
AM_CFLAGS=@OUTPUT_CFLAGS@
|
206
|
+
|
207
|
+
all: @OUTPUT_MOD@.$(OBJEXT)
|
208
|
+
|
209
|
+
# No installation happening from here
|
210
|
+
install: all
|
211
|
+
|
212
|
+
|
213
|
+
endif
|
@@ -0,0 +1,1238 @@
|
|
1
|
+
# Makefile.in generated by automake 1.12.2 from Makefile.am.
|
2
|
+
# @configure_input@
|
3
|
+
|
4
|
+
# Copyright (C) 1994-2012 Free Software Foundation, Inc.
|
5
|
+
|
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
|
+
|
17
|
+
VPATH = @srcdir@
|
18
|
+
am__make_dryrun = \
|
19
|
+
{ \
|
20
|
+
am__dry=no; \
|
21
|
+
case $$MAKEFLAGS in \
|
22
|
+
*\\[\ \ ]*) \
|
23
|
+
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
|
24
|
+
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
|
25
|
+
*) \
|
26
|
+
for am__flg in $$MAKEFLAGS; do \
|
27
|
+
case $$am__flg in \
|
28
|
+
*=*|--*) ;; \
|
29
|
+
*n*) am__dry=yes; break;; \
|
30
|
+
esac; \
|
31
|
+
done;; \
|
32
|
+
esac; \
|
33
|
+
test $$am__dry = yes; \
|
34
|
+
}
|
35
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
36
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
37
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
38
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
39
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
40
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
41
|
+
install_sh_PROGRAM = $(install_sh) -c
|
42
|
+
install_sh_SCRIPT = $(install_sh) -c
|
43
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
44
|
+
transform = $(program_transform_name)
|
45
|
+
NORMAL_INSTALL = :
|
46
|
+
PRE_INSTALL = :
|
47
|
+
POST_INSTALL = :
|
48
|
+
NORMAL_UNINSTALL = :
|
49
|
+
PRE_UNINSTALL = :
|
50
|
+
POST_UNINSTALL = :
|
51
|
+
build_triplet = @build@
|
52
|
+
host_triplet = @host@
|
53
|
+
|
54
|
+
# These are not tested and _very_ likely need work: aix alib hp os2 sgi mint
|
55
|
+
|
56
|
+
# Use that sh/perl script to generate the module entries:
|
57
|
+
#for i in alsa coreaudio esd jack nas oss portaudio pulse sdl sndio sun win32 aix alib arts hp os2 sgi mint openal dummy; do echo $i; done |
|
58
|
+
#perl -ne 'chomp; $big = uc($_); print <<EOT;
|
59
|
+
#
|
60
|
+
#if HAVE_$big
|
61
|
+
#pkglib_LTLIBRARIES += output_$_.la
|
62
|
+
#output_${_}_la_SOURCES = $_.c
|
63
|
+
#output_${_}_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '"'"'^mpg123_'"'"' \@${big}_LDFLAGS\@
|
64
|
+
#output_${_}_la_CFLAGS = \@${big}_CFLAGS\@
|
65
|
+
#output_${_}_la_LIBADD = \@${big}_LIBS\@
|
66
|
+
#endif
|
67
|
+
#EOT
|
68
|
+
#'
|
69
|
+
@HAVE_ALSA_TRUE@@HAVE_MODULES_TRUE@am__append_1 = output_alsa.la
|
70
|
+
@HAVE_COREAUDIO_TRUE@@HAVE_MODULES_TRUE@am__append_2 = output_coreaudio.la
|
71
|
+
@HAVE_ESD_TRUE@@HAVE_MODULES_TRUE@am__append_3 = output_esd.la
|
72
|
+
@HAVE_JACK_TRUE@@HAVE_MODULES_TRUE@am__append_4 = output_jack.la
|
73
|
+
@HAVE_MODULES_TRUE@@HAVE_NAS_TRUE@am__append_5 = output_nas.la
|
74
|
+
@HAVE_MODULES_TRUE@@HAVE_OSS_TRUE@am__append_6 = output_oss.la
|
75
|
+
@HAVE_MODULES_TRUE@@HAVE_PORTAUDIO_TRUE@am__append_7 = output_portaudio.la
|
76
|
+
@HAVE_MODULES_TRUE@@HAVE_PULSE_TRUE@am__append_8 = output_pulse.la
|
77
|
+
@HAVE_MODULES_TRUE@@HAVE_SDL_TRUE@am__append_9 = output_sdl.la
|
78
|
+
@HAVE_MODULES_TRUE@@HAVE_SNDIO_TRUE@am__append_10 = output_sndio.la
|
79
|
+
@HAVE_MODULES_TRUE@@HAVE_SUN_TRUE@am__append_11 = output_sun.la
|
80
|
+
@HAVE_MODULES_TRUE@@HAVE_WIN32_TRUE@am__append_12 = output_win32.la
|
81
|
+
@HAVE_AIX_TRUE@@HAVE_MODULES_TRUE@am__append_13 = output_aix.la
|
82
|
+
@HAVE_ALIB_TRUE@@HAVE_MODULES_TRUE@am__append_14 = output_alib.la
|
83
|
+
@HAVE_ARTS_TRUE@@HAVE_MODULES_TRUE@am__append_15 = output_arts.la
|
84
|
+
@HAVE_HP_TRUE@@HAVE_MODULES_TRUE@am__append_16 = output_hp.la
|
85
|
+
@HAVE_MODULES_TRUE@@HAVE_OS2_TRUE@am__append_17 = output_os2.la
|
86
|
+
@HAVE_MODULES_TRUE@@HAVE_SGI_TRUE@am__append_18 = output_sgi.la
|
87
|
+
@HAVE_MINT_TRUE@@HAVE_MODULES_TRUE@am__append_19 = output_mint.la
|
88
|
+
@HAVE_MODULES_TRUE@@HAVE_OPENAL_TRUE@am__append_20 = output_openal.la
|
89
|
+
@HAVE_DUMMY_TRUE@@HAVE_MODULES_TRUE@am__append_21 = output_dummy.la
|
90
|
+
subdir = src/output
|
91
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
92
|
+
$(top_srcdir)/build/depcomp
|
93
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
94
|
+
am__aclocal_m4_deps = $(top_srcdir)/m4/addrconfig.m4 \
|
95
|
+
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
96
|
+
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
97
|
+
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
|
98
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
99
|
+
$(ACLOCAL_M4)
|
100
|
+
mkinstalldirs = $(install_sh) -d
|
101
|
+
CONFIG_HEADER = $(top_builddir)/src/config.h
|
102
|
+
CONFIG_CLEAN_FILES =
|
103
|
+
CONFIG_CLEAN_VPATH_FILES =
|
104
|
+
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
105
|
+
am__vpath_adj = case $$p in \
|
106
|
+
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
107
|
+
*) f=$$p;; \
|
108
|
+
esac;
|
109
|
+
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
110
|
+
am__install_max = 40
|
111
|
+
am__nobase_strip_setup = \
|
112
|
+
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
113
|
+
am__nobase_strip = \
|
114
|
+
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
115
|
+
am__nobase_list = $(am__nobase_strip_setup); \
|
116
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
117
|
+
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
118
|
+
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
119
|
+
if (++n[$$2] == $(am__install_max)) \
|
120
|
+
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
121
|
+
END { for (dir in files) print dir, files[dir] }'
|
122
|
+
am__base_list = \
|
123
|
+
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
124
|
+
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
125
|
+
am__uninstall_files_from_dir = { \
|
126
|
+
test -z "$$files" \
|
127
|
+
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
128
|
+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
129
|
+
$(am__cd) "$$dir" && rm -f $$files; }; \
|
130
|
+
}
|
131
|
+
am__installdirs = "$(DESTDIR)$(pkglibdir)"
|
132
|
+
LTLIBRARIES = $(pkglib_LTLIBRARIES)
|
133
|
+
output_aix_la_DEPENDENCIES =
|
134
|
+
am__output_aix_la_SOURCES_DIST = aix.c
|
135
|
+
@HAVE_AIX_TRUE@@HAVE_MODULES_TRUE@am_output_aix_la_OBJECTS = \
|
136
|
+
@HAVE_AIX_TRUE@@HAVE_MODULES_TRUE@ output_aix_la-aix.lo
|
137
|
+
output_aix_la_OBJECTS = $(am_output_aix_la_OBJECTS)
|
138
|
+
output_aix_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
139
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_aix_la_CFLAGS) \
|
140
|
+
$(CFLAGS) $(output_aix_la_LDFLAGS) $(LDFLAGS) -o $@
|
141
|
+
@HAVE_AIX_TRUE@@HAVE_MODULES_TRUE@am_output_aix_la_rpath = -rpath \
|
142
|
+
@HAVE_AIX_TRUE@@HAVE_MODULES_TRUE@ $(pkglibdir)
|
143
|
+
output_alib_la_DEPENDENCIES =
|
144
|
+
am__output_alib_la_SOURCES_DIST = alib.c
|
145
|
+
@HAVE_ALIB_TRUE@@HAVE_MODULES_TRUE@am_output_alib_la_OBJECTS = \
|
146
|
+
@HAVE_ALIB_TRUE@@HAVE_MODULES_TRUE@ output_alib_la-alib.lo
|
147
|
+
output_alib_la_OBJECTS = $(am_output_alib_la_OBJECTS)
|
148
|
+
output_alib_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
149
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_alib_la_CFLAGS) \
|
150
|
+
$(CFLAGS) $(output_alib_la_LDFLAGS) $(LDFLAGS) -o $@
|
151
|
+
@HAVE_ALIB_TRUE@@HAVE_MODULES_TRUE@am_output_alib_la_rpath = -rpath \
|
152
|
+
@HAVE_ALIB_TRUE@@HAVE_MODULES_TRUE@ $(pkglibdir)
|
153
|
+
output_alsa_la_DEPENDENCIES =
|
154
|
+
am__output_alsa_la_SOURCES_DIST = alsa.c
|
155
|
+
@HAVE_ALSA_TRUE@@HAVE_MODULES_TRUE@am_output_alsa_la_OBJECTS = \
|
156
|
+
@HAVE_ALSA_TRUE@@HAVE_MODULES_TRUE@ output_alsa_la-alsa.lo
|
157
|
+
output_alsa_la_OBJECTS = $(am_output_alsa_la_OBJECTS)
|
158
|
+
output_alsa_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
159
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_alsa_la_CFLAGS) \
|
160
|
+
$(CFLAGS) $(output_alsa_la_LDFLAGS) $(LDFLAGS) -o $@
|
161
|
+
@HAVE_ALSA_TRUE@@HAVE_MODULES_TRUE@am_output_alsa_la_rpath = -rpath \
|
162
|
+
@HAVE_ALSA_TRUE@@HAVE_MODULES_TRUE@ $(pkglibdir)
|
163
|
+
output_arts_la_DEPENDENCIES =
|
164
|
+
am__output_arts_la_SOURCES_DIST = arts.c
|
165
|
+
@HAVE_ARTS_TRUE@@HAVE_MODULES_TRUE@am_output_arts_la_OBJECTS = \
|
166
|
+
@HAVE_ARTS_TRUE@@HAVE_MODULES_TRUE@ output_arts_la-arts.lo
|
167
|
+
output_arts_la_OBJECTS = $(am_output_arts_la_OBJECTS)
|
168
|
+
output_arts_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
169
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_arts_la_CFLAGS) \
|
170
|
+
$(CFLAGS) $(output_arts_la_LDFLAGS) $(LDFLAGS) -o $@
|
171
|
+
@HAVE_ARTS_TRUE@@HAVE_MODULES_TRUE@am_output_arts_la_rpath = -rpath \
|
172
|
+
@HAVE_ARTS_TRUE@@HAVE_MODULES_TRUE@ $(pkglibdir)
|
173
|
+
output_coreaudio_la_DEPENDENCIES =
|
174
|
+
am__output_coreaudio_la_SOURCES_DIST = coreaudio.c
|
175
|
+
@HAVE_COREAUDIO_TRUE@@HAVE_MODULES_TRUE@am_output_coreaudio_la_OBJECTS = output_coreaudio_la-coreaudio.lo
|
176
|
+
output_coreaudio_la_OBJECTS = $(am_output_coreaudio_la_OBJECTS)
|
177
|
+
output_coreaudio_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
178
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) \
|
179
|
+
$(output_coreaudio_la_CFLAGS) $(CFLAGS) \
|
180
|
+
$(output_coreaudio_la_LDFLAGS) $(LDFLAGS) -o $@
|
181
|
+
@HAVE_COREAUDIO_TRUE@@HAVE_MODULES_TRUE@am_output_coreaudio_la_rpath = \
|
182
|
+
@HAVE_COREAUDIO_TRUE@@HAVE_MODULES_TRUE@ -rpath $(pkglibdir)
|
183
|
+
output_dummy_la_DEPENDENCIES =
|
184
|
+
am__output_dummy_la_SOURCES_DIST = dummy.c
|
185
|
+
@HAVE_DUMMY_TRUE@@HAVE_MODULES_TRUE@am_output_dummy_la_OBJECTS = \
|
186
|
+
@HAVE_DUMMY_TRUE@@HAVE_MODULES_TRUE@ output_dummy_la-dummy.lo
|
187
|
+
output_dummy_la_OBJECTS = $(am_output_dummy_la_OBJECTS)
|
188
|
+
output_dummy_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
189
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_dummy_la_CFLAGS) \
|
190
|
+
$(CFLAGS) $(output_dummy_la_LDFLAGS) $(LDFLAGS) -o $@
|
191
|
+
@HAVE_DUMMY_TRUE@@HAVE_MODULES_TRUE@am_output_dummy_la_rpath = -rpath \
|
192
|
+
@HAVE_DUMMY_TRUE@@HAVE_MODULES_TRUE@ $(pkglibdir)
|
193
|
+
output_esd_la_DEPENDENCIES =
|
194
|
+
am__output_esd_la_SOURCES_DIST = esd.c
|
195
|
+
@HAVE_ESD_TRUE@@HAVE_MODULES_TRUE@am_output_esd_la_OBJECTS = \
|
196
|
+
@HAVE_ESD_TRUE@@HAVE_MODULES_TRUE@ output_esd_la-esd.lo
|
197
|
+
output_esd_la_OBJECTS = $(am_output_esd_la_OBJECTS)
|
198
|
+
output_esd_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
199
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_esd_la_CFLAGS) \
|
200
|
+
$(CFLAGS) $(output_esd_la_LDFLAGS) $(LDFLAGS) -o $@
|
201
|
+
@HAVE_ESD_TRUE@@HAVE_MODULES_TRUE@am_output_esd_la_rpath = -rpath \
|
202
|
+
@HAVE_ESD_TRUE@@HAVE_MODULES_TRUE@ $(pkglibdir)
|
203
|
+
output_hp_la_DEPENDENCIES =
|
204
|
+
am__output_hp_la_SOURCES_DIST = hp.c
|
205
|
+
@HAVE_HP_TRUE@@HAVE_MODULES_TRUE@am_output_hp_la_OBJECTS = \
|
206
|
+
@HAVE_HP_TRUE@@HAVE_MODULES_TRUE@ output_hp_la-hp.lo
|
207
|
+
output_hp_la_OBJECTS = $(am_output_hp_la_OBJECTS)
|
208
|
+
output_hp_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
209
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_hp_la_CFLAGS) \
|
210
|
+
$(CFLAGS) $(output_hp_la_LDFLAGS) $(LDFLAGS) -o $@
|
211
|
+
@HAVE_HP_TRUE@@HAVE_MODULES_TRUE@am_output_hp_la_rpath = -rpath \
|
212
|
+
@HAVE_HP_TRUE@@HAVE_MODULES_TRUE@ $(pkglibdir)
|
213
|
+
output_jack_la_DEPENDENCIES =
|
214
|
+
am__output_jack_la_SOURCES_DIST = jack.c
|
215
|
+
@HAVE_JACK_TRUE@@HAVE_MODULES_TRUE@am_output_jack_la_OBJECTS = \
|
216
|
+
@HAVE_JACK_TRUE@@HAVE_MODULES_TRUE@ output_jack_la-jack.lo
|
217
|
+
output_jack_la_OBJECTS = $(am_output_jack_la_OBJECTS)
|
218
|
+
output_jack_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
219
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_jack_la_CFLAGS) \
|
220
|
+
$(CFLAGS) $(output_jack_la_LDFLAGS) $(LDFLAGS) -o $@
|
221
|
+
@HAVE_JACK_TRUE@@HAVE_MODULES_TRUE@am_output_jack_la_rpath = -rpath \
|
222
|
+
@HAVE_JACK_TRUE@@HAVE_MODULES_TRUE@ $(pkglibdir)
|
223
|
+
output_mint_la_DEPENDENCIES =
|
224
|
+
am__output_mint_la_SOURCES_DIST = mint.c
|
225
|
+
@HAVE_MINT_TRUE@@HAVE_MODULES_TRUE@am_output_mint_la_OBJECTS = \
|
226
|
+
@HAVE_MINT_TRUE@@HAVE_MODULES_TRUE@ output_mint_la-mint.lo
|
227
|
+
output_mint_la_OBJECTS = $(am_output_mint_la_OBJECTS)
|
228
|
+
output_mint_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
229
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_mint_la_CFLAGS) \
|
230
|
+
$(CFLAGS) $(output_mint_la_LDFLAGS) $(LDFLAGS) -o $@
|
231
|
+
@HAVE_MINT_TRUE@@HAVE_MODULES_TRUE@am_output_mint_la_rpath = -rpath \
|
232
|
+
@HAVE_MINT_TRUE@@HAVE_MODULES_TRUE@ $(pkglibdir)
|
233
|
+
output_nas_la_DEPENDENCIES =
|
234
|
+
am__output_nas_la_SOURCES_DIST = nas.c
|
235
|
+
@HAVE_MODULES_TRUE@@HAVE_NAS_TRUE@am_output_nas_la_OBJECTS = \
|
236
|
+
@HAVE_MODULES_TRUE@@HAVE_NAS_TRUE@ output_nas_la-nas.lo
|
237
|
+
output_nas_la_OBJECTS = $(am_output_nas_la_OBJECTS)
|
238
|
+
output_nas_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
239
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_nas_la_CFLAGS) \
|
240
|
+
$(CFLAGS) $(output_nas_la_LDFLAGS) $(LDFLAGS) -o $@
|
241
|
+
@HAVE_MODULES_TRUE@@HAVE_NAS_TRUE@am_output_nas_la_rpath = -rpath \
|
242
|
+
@HAVE_MODULES_TRUE@@HAVE_NAS_TRUE@ $(pkglibdir)
|
243
|
+
output_openal_la_DEPENDENCIES =
|
244
|
+
am__output_openal_la_SOURCES_DIST = openal.c
|
245
|
+
@HAVE_MODULES_TRUE@@HAVE_OPENAL_TRUE@am_output_openal_la_OBJECTS = output_openal_la-openal.lo
|
246
|
+
output_openal_la_OBJECTS = $(am_output_openal_la_OBJECTS)
|
247
|
+
output_openal_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
248
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_openal_la_CFLAGS) \
|
249
|
+
$(CFLAGS) $(output_openal_la_LDFLAGS) $(LDFLAGS) -o $@
|
250
|
+
@HAVE_MODULES_TRUE@@HAVE_OPENAL_TRUE@am_output_openal_la_rpath = \
|
251
|
+
@HAVE_MODULES_TRUE@@HAVE_OPENAL_TRUE@ -rpath $(pkglibdir)
|
252
|
+
output_os2_la_DEPENDENCIES =
|
253
|
+
am__output_os2_la_SOURCES_DIST = os2.c
|
254
|
+
@HAVE_MODULES_TRUE@@HAVE_OS2_TRUE@am_output_os2_la_OBJECTS = \
|
255
|
+
@HAVE_MODULES_TRUE@@HAVE_OS2_TRUE@ output_os2_la-os2.lo
|
256
|
+
output_os2_la_OBJECTS = $(am_output_os2_la_OBJECTS)
|
257
|
+
output_os2_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
258
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_os2_la_CFLAGS) \
|
259
|
+
$(CFLAGS) $(output_os2_la_LDFLAGS) $(LDFLAGS) -o $@
|
260
|
+
@HAVE_MODULES_TRUE@@HAVE_OS2_TRUE@am_output_os2_la_rpath = -rpath \
|
261
|
+
@HAVE_MODULES_TRUE@@HAVE_OS2_TRUE@ $(pkglibdir)
|
262
|
+
output_oss_la_DEPENDENCIES =
|
263
|
+
am__output_oss_la_SOURCES_DIST = oss.c
|
264
|
+
@HAVE_MODULES_TRUE@@HAVE_OSS_TRUE@am_output_oss_la_OBJECTS = \
|
265
|
+
@HAVE_MODULES_TRUE@@HAVE_OSS_TRUE@ output_oss_la-oss.lo
|
266
|
+
output_oss_la_OBJECTS = $(am_output_oss_la_OBJECTS)
|
267
|
+
output_oss_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
268
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_oss_la_CFLAGS) \
|
269
|
+
$(CFLAGS) $(output_oss_la_LDFLAGS) $(LDFLAGS) -o $@
|
270
|
+
@HAVE_MODULES_TRUE@@HAVE_OSS_TRUE@am_output_oss_la_rpath = -rpath \
|
271
|
+
@HAVE_MODULES_TRUE@@HAVE_OSS_TRUE@ $(pkglibdir)
|
272
|
+
output_portaudio_la_DEPENDENCIES =
|
273
|
+
am__output_portaudio_la_SOURCES_DIST = portaudio.c
|
274
|
+
@HAVE_MODULES_TRUE@@HAVE_PORTAUDIO_TRUE@am_output_portaudio_la_OBJECTS = output_portaudio_la-portaudio.lo
|
275
|
+
output_portaudio_la_OBJECTS = $(am_output_portaudio_la_OBJECTS)
|
276
|
+
output_portaudio_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
277
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) \
|
278
|
+
$(output_portaudio_la_CFLAGS) $(CFLAGS) \
|
279
|
+
$(output_portaudio_la_LDFLAGS) $(LDFLAGS) -o $@
|
280
|
+
@HAVE_MODULES_TRUE@@HAVE_PORTAUDIO_TRUE@am_output_portaudio_la_rpath = \
|
281
|
+
@HAVE_MODULES_TRUE@@HAVE_PORTAUDIO_TRUE@ -rpath $(pkglibdir)
|
282
|
+
output_pulse_la_DEPENDENCIES =
|
283
|
+
am__output_pulse_la_SOURCES_DIST = pulse.c
|
284
|
+
@HAVE_MODULES_TRUE@@HAVE_PULSE_TRUE@am_output_pulse_la_OBJECTS = \
|
285
|
+
@HAVE_MODULES_TRUE@@HAVE_PULSE_TRUE@ output_pulse_la-pulse.lo
|
286
|
+
output_pulse_la_OBJECTS = $(am_output_pulse_la_OBJECTS)
|
287
|
+
output_pulse_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
288
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_pulse_la_CFLAGS) \
|
289
|
+
$(CFLAGS) $(output_pulse_la_LDFLAGS) $(LDFLAGS) -o $@
|
290
|
+
@HAVE_MODULES_TRUE@@HAVE_PULSE_TRUE@am_output_pulse_la_rpath = -rpath \
|
291
|
+
@HAVE_MODULES_TRUE@@HAVE_PULSE_TRUE@ $(pkglibdir)
|
292
|
+
output_sdl_la_DEPENDENCIES =
|
293
|
+
am__output_sdl_la_SOURCES_DIST = sdl.c
|
294
|
+
@HAVE_MODULES_TRUE@@HAVE_SDL_TRUE@am_output_sdl_la_OBJECTS = \
|
295
|
+
@HAVE_MODULES_TRUE@@HAVE_SDL_TRUE@ output_sdl_la-sdl.lo
|
296
|
+
output_sdl_la_OBJECTS = $(am_output_sdl_la_OBJECTS)
|
297
|
+
output_sdl_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
298
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_sdl_la_CFLAGS) \
|
299
|
+
$(CFLAGS) $(output_sdl_la_LDFLAGS) $(LDFLAGS) -o $@
|
300
|
+
@HAVE_MODULES_TRUE@@HAVE_SDL_TRUE@am_output_sdl_la_rpath = -rpath \
|
301
|
+
@HAVE_MODULES_TRUE@@HAVE_SDL_TRUE@ $(pkglibdir)
|
302
|
+
output_sgi_la_DEPENDENCIES =
|
303
|
+
am__output_sgi_la_SOURCES_DIST = sgi.c
|
304
|
+
@HAVE_MODULES_TRUE@@HAVE_SGI_TRUE@am_output_sgi_la_OBJECTS = \
|
305
|
+
@HAVE_MODULES_TRUE@@HAVE_SGI_TRUE@ output_sgi_la-sgi.lo
|
306
|
+
output_sgi_la_OBJECTS = $(am_output_sgi_la_OBJECTS)
|
307
|
+
output_sgi_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
308
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_sgi_la_CFLAGS) \
|
309
|
+
$(CFLAGS) $(output_sgi_la_LDFLAGS) $(LDFLAGS) -o $@
|
310
|
+
@HAVE_MODULES_TRUE@@HAVE_SGI_TRUE@am_output_sgi_la_rpath = -rpath \
|
311
|
+
@HAVE_MODULES_TRUE@@HAVE_SGI_TRUE@ $(pkglibdir)
|
312
|
+
output_sndio_la_DEPENDENCIES =
|
313
|
+
am__output_sndio_la_SOURCES_DIST = sndio.c
|
314
|
+
@HAVE_MODULES_TRUE@@HAVE_SNDIO_TRUE@am_output_sndio_la_OBJECTS = \
|
315
|
+
@HAVE_MODULES_TRUE@@HAVE_SNDIO_TRUE@ output_sndio_la-sndio.lo
|
316
|
+
output_sndio_la_OBJECTS = $(am_output_sndio_la_OBJECTS)
|
317
|
+
output_sndio_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
318
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_sndio_la_CFLAGS) \
|
319
|
+
$(CFLAGS) $(output_sndio_la_LDFLAGS) $(LDFLAGS) -o $@
|
320
|
+
@HAVE_MODULES_TRUE@@HAVE_SNDIO_TRUE@am_output_sndio_la_rpath = -rpath \
|
321
|
+
@HAVE_MODULES_TRUE@@HAVE_SNDIO_TRUE@ $(pkglibdir)
|
322
|
+
output_sun_la_DEPENDENCIES =
|
323
|
+
am__output_sun_la_SOURCES_DIST = sun.c
|
324
|
+
@HAVE_MODULES_TRUE@@HAVE_SUN_TRUE@am_output_sun_la_OBJECTS = \
|
325
|
+
@HAVE_MODULES_TRUE@@HAVE_SUN_TRUE@ output_sun_la-sun.lo
|
326
|
+
output_sun_la_OBJECTS = $(am_output_sun_la_OBJECTS)
|
327
|
+
output_sun_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
328
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_sun_la_CFLAGS) \
|
329
|
+
$(CFLAGS) $(output_sun_la_LDFLAGS) $(LDFLAGS) -o $@
|
330
|
+
@HAVE_MODULES_TRUE@@HAVE_SUN_TRUE@am_output_sun_la_rpath = -rpath \
|
331
|
+
@HAVE_MODULES_TRUE@@HAVE_SUN_TRUE@ $(pkglibdir)
|
332
|
+
output_win32_la_DEPENDENCIES =
|
333
|
+
am__output_win32_la_SOURCES_DIST = win32.c
|
334
|
+
@HAVE_MODULES_TRUE@@HAVE_WIN32_TRUE@am_output_win32_la_OBJECTS = \
|
335
|
+
@HAVE_MODULES_TRUE@@HAVE_WIN32_TRUE@ output_win32_la-win32.lo
|
336
|
+
output_win32_la_OBJECTS = $(am_output_win32_la_OBJECTS)
|
337
|
+
output_win32_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
338
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(output_win32_la_CFLAGS) \
|
339
|
+
$(CFLAGS) $(output_win32_la_LDFLAGS) $(LDFLAGS) -o $@
|
340
|
+
@HAVE_MODULES_TRUE@@HAVE_WIN32_TRUE@am_output_win32_la_rpath = -rpath \
|
341
|
+
@HAVE_MODULES_TRUE@@HAVE_WIN32_TRUE@ $(pkglibdir)
|
342
|
+
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src
|
343
|
+
depcomp = $(SHELL) $(top_srcdir)/build/depcomp
|
344
|
+
am__depfiles_maybe = depfiles
|
345
|
+
am__mv = mv -f
|
346
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
347
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
348
|
+
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
349
|
+
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
350
|
+
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
351
|
+
CCLD = $(CC)
|
352
|
+
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
|
353
|
+
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
|
354
|
+
$(LDFLAGS) -o $@
|
355
|
+
SOURCES = $(output_aix_la_SOURCES) $(output_alib_la_SOURCES) \
|
356
|
+
$(output_alsa_la_SOURCES) $(output_arts_la_SOURCES) \
|
357
|
+
$(output_coreaudio_la_SOURCES) $(output_dummy_la_SOURCES) \
|
358
|
+
$(output_esd_la_SOURCES) $(output_hp_la_SOURCES) \
|
359
|
+
$(output_jack_la_SOURCES) $(output_mint_la_SOURCES) \
|
360
|
+
$(output_nas_la_SOURCES) $(output_openal_la_SOURCES) \
|
361
|
+
$(output_os2_la_SOURCES) $(output_oss_la_SOURCES) \
|
362
|
+
$(output_portaudio_la_SOURCES) $(output_pulse_la_SOURCES) \
|
363
|
+
$(output_sdl_la_SOURCES) $(output_sgi_la_SOURCES) \
|
364
|
+
$(output_sndio_la_SOURCES) $(output_sun_la_SOURCES) \
|
365
|
+
$(output_win32_la_SOURCES)
|
366
|
+
DIST_SOURCES = $(am__output_aix_la_SOURCES_DIST) \
|
367
|
+
$(am__output_alib_la_SOURCES_DIST) \
|
368
|
+
$(am__output_alsa_la_SOURCES_DIST) \
|
369
|
+
$(am__output_arts_la_SOURCES_DIST) \
|
370
|
+
$(am__output_coreaudio_la_SOURCES_DIST) \
|
371
|
+
$(am__output_dummy_la_SOURCES_DIST) \
|
372
|
+
$(am__output_esd_la_SOURCES_DIST) \
|
373
|
+
$(am__output_hp_la_SOURCES_DIST) \
|
374
|
+
$(am__output_jack_la_SOURCES_DIST) \
|
375
|
+
$(am__output_mint_la_SOURCES_DIST) \
|
376
|
+
$(am__output_nas_la_SOURCES_DIST) \
|
377
|
+
$(am__output_openal_la_SOURCES_DIST) \
|
378
|
+
$(am__output_os2_la_SOURCES_DIST) \
|
379
|
+
$(am__output_oss_la_SOURCES_DIST) \
|
380
|
+
$(am__output_portaudio_la_SOURCES_DIST) \
|
381
|
+
$(am__output_pulse_la_SOURCES_DIST) \
|
382
|
+
$(am__output_sdl_la_SOURCES_DIST) \
|
383
|
+
$(am__output_sgi_la_SOURCES_DIST) \
|
384
|
+
$(am__output_sndio_la_SOURCES_DIST) \
|
385
|
+
$(am__output_sun_la_SOURCES_DIST) \
|
386
|
+
$(am__output_win32_la_SOURCES_DIST)
|
387
|
+
am__can_run_installinfo = \
|
388
|
+
case $$AM_UPDATE_INFO_DIR in \
|
389
|
+
n|no|NO) false;; \
|
390
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
391
|
+
esac
|
392
|
+
ETAGS = etags
|
393
|
+
CTAGS = ctags
|
394
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
395
|
+
ACLOCAL = @ACLOCAL@
|
396
|
+
AIX_CFLAGS = @AIX_CFLAGS@
|
397
|
+
AIX_LDFLAGS = @AIX_LDFLAGS@
|
398
|
+
AIX_LIBS = @AIX_LIBS@
|
399
|
+
ALIB_CFLAGS = @ALIB_CFLAGS@
|
400
|
+
ALIB_LDFLAGS = @ALIB_LDFLAGS@
|
401
|
+
ALIB_LIBS = @ALIB_LIBS@
|
402
|
+
ALSA_CFLAGS = @ALSA_CFLAGS@
|
403
|
+
ALSA_LDFLAGS = @ALSA_LDFLAGS@
|
404
|
+
ALSA_LIBS = @ALSA_LIBS@
|
405
|
+
AMTAR = @AMTAR@
|
406
|
+
API_VERSION = @API_VERSION@
|
407
|
+
AR = @AR@
|
408
|
+
ARTS_CFLAGS = @ARTS_CFLAGS@
|
409
|
+
ARTS_LDFLAGS = @ARTS_LDFLAGS@
|
410
|
+
ARTS_LIBS = @ARTS_LIBS@
|
411
|
+
AS = @AS@
|
412
|
+
AUTOCONF = @AUTOCONF@
|
413
|
+
AUTOHEADER = @AUTOHEADER@
|
414
|
+
AUTOMAKE = @AUTOMAKE@
|
415
|
+
AWK = @AWK@
|
416
|
+
CC = @CC@
|
417
|
+
CCAS = @CCAS@
|
418
|
+
CCASDEPMODE = @CCASDEPMODE@
|
419
|
+
CCASFLAGS = @CCASFLAGS@
|
420
|
+
CCDEPMODE = @CCDEPMODE@
|
421
|
+
CFLAGS = @CFLAGS@
|
422
|
+
COREAUDIO_CFLAGS = @COREAUDIO_CFLAGS@
|
423
|
+
COREAUDIO_LDFLAGS = @COREAUDIO_LDFLAGS@
|
424
|
+
COREAUDIO_LIBS = @COREAUDIO_LIBS@
|
425
|
+
CPP = @CPP@
|
426
|
+
CPPFLAGS = @CPPFLAGS@
|
427
|
+
CYGPATH_W = @CYGPATH_W@
|
428
|
+
DECODER_LOBJ = @DECODER_LOBJ@
|
429
|
+
DECODER_OBJ = @DECODER_OBJ@
|
430
|
+
DEFS = @DEFS@
|
431
|
+
DEPDIR = @DEPDIR@
|
432
|
+
DLLTOOL = @DLLTOOL@
|
433
|
+
DSYMUTIL = @DSYMUTIL@
|
434
|
+
DUMMY_CFLAGS = @DUMMY_CFLAGS@
|
435
|
+
DUMMY_LDFLAGS = @DUMMY_LDFLAGS@
|
436
|
+
DUMMY_LIBS = @DUMMY_LIBS@
|
437
|
+
DUMPBIN = @DUMPBIN@
|
438
|
+
ECHO_C = @ECHO_C@
|
439
|
+
ECHO_N = @ECHO_N@
|
440
|
+
ECHO_T = @ECHO_T@
|
441
|
+
EGREP = @EGREP@
|
442
|
+
ESD_CFLAGS = @ESD_CFLAGS@
|
443
|
+
ESD_LDFLAGS = @ESD_LDFLAGS@
|
444
|
+
ESD_LIBS = @ESD_LIBS@
|
445
|
+
EXEC_LT_LDFLAGS = @EXEC_LT_LDFLAGS@
|
446
|
+
EXEEXT = @EXEEXT@
|
447
|
+
FGREP = @FGREP@
|
448
|
+
GREP = @GREP@
|
449
|
+
HP_CFLAGS = @HP_CFLAGS@
|
450
|
+
HP_LDFLAGS = @HP_LDFLAGS@
|
451
|
+
HP_LIBS = @HP_LIBS@
|
452
|
+
INCLUDE_STDIO_H = @INCLUDE_STDIO_H@
|
453
|
+
INCLUDE_STDLIB_H = @INCLUDE_STDLIB_H@
|
454
|
+
INCLUDE_SYS_TYPE_H = @INCLUDE_SYS_TYPE_H@
|
455
|
+
INSTALL = @INSTALL@
|
456
|
+
INSTALL_DATA = @INSTALL_DATA@
|
457
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
458
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
459
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
460
|
+
JACK_CFLAGS = @JACK_CFLAGS@
|
461
|
+
JACK_LDFLAGS = @JACK_LDFLAGS@
|
462
|
+
JACK_LIBS = @JACK_LIBS@
|
463
|
+
LD = @LD@
|
464
|
+
LDFLAGS = @LDFLAGS@
|
465
|
+
LFS_LOBJ = @LFS_LOBJ@
|
466
|
+
LIBMPG123_VERSION = @LIBMPG123_VERSION@
|
467
|
+
LIBOBJS = @LIBOBJS@
|
468
|
+
LIBS = @LIBS@
|
469
|
+
LIBTOOL = @LIBTOOL@
|
470
|
+
LIPO = @LIPO@
|
471
|
+
LN_S = @LN_S@
|
472
|
+
LTLIBOBJS = @LTLIBOBJS@
|
473
|
+
LT_LDFLAGS = @LT_LDFLAGS@
|
474
|
+
MAKEINFO = @MAKEINFO@
|
475
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
476
|
+
MINT_CFLAGS = @MINT_CFLAGS@
|
477
|
+
MINT_LDFLAGS = @MINT_LDFLAGS@
|
478
|
+
MINT_LIBS = @MINT_LIBS@
|
479
|
+
MKDIR_P = @MKDIR_P@
|
480
|
+
MODULE_OBJ = @MODULE_OBJ@
|
481
|
+
NAS_CFLAGS = @NAS_CFLAGS@
|
482
|
+
NAS_LDFLAGS = @NAS_LDFLAGS@
|
483
|
+
NAS_LIBS = @NAS_LIBS@
|
484
|
+
NM = @NM@
|
485
|
+
NMEDIT = @NMEDIT@
|
486
|
+
OBJDUMP = @OBJDUMP@
|
487
|
+
OBJEXT = @OBJEXT@
|
488
|
+
OPENAL_CFLAGS = @OPENAL_CFLAGS@
|
489
|
+
OPENAL_LDFLAGS = @OPENAL_LDFLAGS@
|
490
|
+
OPENAL_LIBS = @OPENAL_LIBS@
|
491
|
+
OS2_CFLAGS = @OS2_CFLAGS@
|
492
|
+
OS2_LDFLAGS = @OS2_LDFLAGS@
|
493
|
+
OS2_LIBS = @OS2_LIBS@
|
494
|
+
OSS_CFLAGS = @OSS_CFLAGS@
|
495
|
+
OSS_LDFLAGS = @OSS_LDFLAGS@
|
496
|
+
OSS_LIBS = @OSS_LIBS@
|
497
|
+
OTOOL = @OTOOL@
|
498
|
+
OTOOL64 = @OTOOL64@
|
499
|
+
OUTPUT_CFLAGS = @OUTPUT_CFLAGS@
|
500
|
+
OUTPUT_LDFLAGS = @OUTPUT_LDFLAGS@
|
501
|
+
OUTPUT_LIBS = @OUTPUT_LIBS@
|
502
|
+
OUTPUT_MOD = @OUTPUT_MOD@
|
503
|
+
OUTPUT_OBJ = @OUTPUT_OBJ@
|
504
|
+
PACKAGE = @PACKAGE@
|
505
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
506
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
507
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
508
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
509
|
+
PACKAGE_URL = @PACKAGE_URL@
|
510
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
511
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
512
|
+
PKG_CONFIG = @PKG_CONFIG@
|
513
|
+
PORTAUDIO_CFLAGS = @PORTAUDIO_CFLAGS@
|
514
|
+
PORTAUDIO_LDFLAGS = @PORTAUDIO_LDFLAGS@
|
515
|
+
PORTAUDIO_LIBS = @PORTAUDIO_LIBS@
|
516
|
+
PULSE_CFLAGS = @PULSE_CFLAGS@
|
517
|
+
PULSE_LDFLAGS = @PULSE_LDFLAGS@
|
518
|
+
PULSE_LIBS = @PULSE_LIBS@
|
519
|
+
RANLIB = @RANLIB@
|
520
|
+
SDL_CFLAGS = @SDL_CFLAGS@
|
521
|
+
SDL_LDFLAGS = @SDL_LDFLAGS@
|
522
|
+
SDL_LIBS = @SDL_LIBS@
|
523
|
+
SED = @SED@
|
524
|
+
SET_MAKE = @SET_MAKE@
|
525
|
+
SGI_CFLAGS = @SGI_CFLAGS@
|
526
|
+
SGI_LDFLAGS = @SGI_LDFLAGS@
|
527
|
+
SGI_LIBS = @SGI_LIBS@
|
528
|
+
SHELL = @SHELL@
|
529
|
+
SNDIO_CFLAGS = @SNDIO_CFLAGS@
|
530
|
+
SNDIO_LDFLAGS = @SNDIO_LDFLAGS@
|
531
|
+
SNDIO_LIBS = @SNDIO_LIBS@
|
532
|
+
STRIP = @STRIP@
|
533
|
+
SUN_CFLAGS = @SUN_CFLAGS@
|
534
|
+
SUN_LDFLAGS = @SUN_LDFLAGS@
|
535
|
+
SUN_LIBS = @SUN_LIBS@
|
536
|
+
VERSION = @VERSION@
|
537
|
+
WIN32_CFLAGS = @WIN32_CFLAGS@
|
538
|
+
WIN32_LDFLAGS = @WIN32_LDFLAGS@
|
539
|
+
WIN32_LIBS = @WIN32_LIBS@
|
540
|
+
abs_builddir = @abs_builddir@
|
541
|
+
abs_srcdir = @abs_srcdir@
|
542
|
+
abs_top_builddir = @abs_top_builddir@
|
543
|
+
abs_top_srcdir = @abs_top_srcdir@
|
544
|
+
ac_ct_AR = @ac_ct_AR@
|
545
|
+
ac_ct_CC = @ac_ct_CC@
|
546
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
547
|
+
am__include = @am__include@
|
548
|
+
am__leading_dot = @am__leading_dot@
|
549
|
+
am__quote = @am__quote@
|
550
|
+
am__tar = @am__tar@
|
551
|
+
am__untar = @am__untar@
|
552
|
+
bindir = @bindir@
|
553
|
+
build = @build@
|
554
|
+
build_alias = @build_alias@
|
555
|
+
build_cpu = @build_cpu@
|
556
|
+
build_os = @build_os@
|
557
|
+
build_vendor = @build_vendor@
|
558
|
+
builddir = @builddir@
|
559
|
+
datadir = @datadir@
|
560
|
+
datarootdir = @datarootdir@
|
561
|
+
docdir = @docdir@
|
562
|
+
dvidir = @dvidir@
|
563
|
+
exec_prefix = @exec_prefix@
|
564
|
+
host = @host@
|
565
|
+
host_alias = @host_alias@
|
566
|
+
host_cpu = @host_cpu@
|
567
|
+
host_os = @host_os@
|
568
|
+
host_vendor = @host_vendor@
|
569
|
+
htmldir = @htmldir@
|
570
|
+
includedir = @includedir@
|
571
|
+
infodir = @infodir@
|
572
|
+
install_sh = @install_sh@
|
573
|
+
libdir = @libdir@
|
574
|
+
libexecdir = @libexecdir@
|
575
|
+
localedir = @localedir@
|
576
|
+
localstatedir = @localstatedir@
|
577
|
+
mandir = @mandir@
|
578
|
+
mkdir_p = @mkdir_p@
|
579
|
+
oldincludedir = @oldincludedir@
|
580
|
+
pdfdir = @pdfdir@
|
581
|
+
prefix = @prefix@
|
582
|
+
program_transform_name = @program_transform_name@
|
583
|
+
psdir = @psdir@
|
584
|
+
sbindir = @sbindir@
|
585
|
+
sharedstatedir = @sharedstatedir@
|
586
|
+
srcdir = @srcdir@
|
587
|
+
sysconfdir = @sysconfdir@
|
588
|
+
target_alias = @target_alias@
|
589
|
+
top_build_prefix = @top_build_prefix@
|
590
|
+
top_builddir = @top_builddir@
|
591
|
+
top_srcdir = @top_srcdir@
|
592
|
+
|
593
|
+
#AM_CPPFLAGS = -I$(top_srcdir)/src/libmpg123 -I$(top_srcdir)/src
|
594
|
+
INCLUDES = $(LTDLINCL) -I$(top_builddir)/src -I$(top_builddir)/src/libmpg123 -I$(top_srcdir)/src -I$(top_srcdir)/src/libmpg123
|
595
|
+
|
596
|
+
#Do not include uneeded headers from mpg123app.h
|
597
|
+
AM_CPPFLAGS = -DBUILDING_OUTPUT_MODULES=1
|
598
|
+
@HAVE_MODULES_TRUE@pkglib_LTLIBRARIES = $(am__append_1) \
|
599
|
+
@HAVE_MODULES_TRUE@ $(am__append_2) $(am__append_3) \
|
600
|
+
@HAVE_MODULES_TRUE@ $(am__append_4) $(am__append_5) \
|
601
|
+
@HAVE_MODULES_TRUE@ $(am__append_6) $(am__append_7) \
|
602
|
+
@HAVE_MODULES_TRUE@ $(am__append_8) $(am__append_9) \
|
603
|
+
@HAVE_MODULES_TRUE@ $(am__append_10) $(am__append_11) \
|
604
|
+
@HAVE_MODULES_TRUE@ $(am__append_12) $(am__append_13) \
|
605
|
+
@HAVE_MODULES_TRUE@ $(am__append_14) $(am__append_15) \
|
606
|
+
@HAVE_MODULES_TRUE@ $(am__append_16) $(am__append_17) \
|
607
|
+
@HAVE_MODULES_TRUE@ $(am__append_18) $(am__append_19) \
|
608
|
+
@HAVE_MODULES_TRUE@ $(am__append_20) $(am__append_21)
|
609
|
+
@HAVE_ALSA_TRUE@@HAVE_MODULES_TRUE@output_alsa_la_SOURCES = alsa.c
|
610
|
+
@HAVE_ALSA_TRUE@@HAVE_MODULES_TRUE@output_alsa_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @ALSA_LDFLAGS@
|
611
|
+
@HAVE_ALSA_TRUE@@HAVE_MODULES_TRUE@output_alsa_la_CFLAGS = @ALSA_CFLAGS@
|
612
|
+
@HAVE_ALSA_TRUE@@HAVE_MODULES_TRUE@output_alsa_la_LIBADD = @ALSA_LIBS@
|
613
|
+
@HAVE_COREAUDIO_TRUE@@HAVE_MODULES_TRUE@output_coreaudio_la_SOURCES = coreaudio.c
|
614
|
+
@HAVE_COREAUDIO_TRUE@@HAVE_MODULES_TRUE@output_coreaudio_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @COREAUDIO_LDFLAGS@
|
615
|
+
@HAVE_COREAUDIO_TRUE@@HAVE_MODULES_TRUE@output_coreaudio_la_CFLAGS = @COREAUDIO_CFLAGS@
|
616
|
+
@HAVE_COREAUDIO_TRUE@@HAVE_MODULES_TRUE@output_coreaudio_la_LIBADD = @COREAUDIO_LIBS@
|
617
|
+
@HAVE_ESD_TRUE@@HAVE_MODULES_TRUE@output_esd_la_SOURCES = esd.c
|
618
|
+
@HAVE_ESD_TRUE@@HAVE_MODULES_TRUE@output_esd_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @ESD_LDFLAGS@
|
619
|
+
@HAVE_ESD_TRUE@@HAVE_MODULES_TRUE@output_esd_la_CFLAGS = @ESD_CFLAGS@
|
620
|
+
@HAVE_ESD_TRUE@@HAVE_MODULES_TRUE@output_esd_la_LIBADD = @ESD_LIBS@
|
621
|
+
@HAVE_JACK_TRUE@@HAVE_MODULES_TRUE@output_jack_la_SOURCES = jack.c
|
622
|
+
@HAVE_JACK_TRUE@@HAVE_MODULES_TRUE@output_jack_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @JACK_LDFLAGS@
|
623
|
+
@HAVE_JACK_TRUE@@HAVE_MODULES_TRUE@output_jack_la_CFLAGS = @JACK_CFLAGS@
|
624
|
+
@HAVE_JACK_TRUE@@HAVE_MODULES_TRUE@output_jack_la_LIBADD = @JACK_LIBS@
|
625
|
+
@HAVE_MODULES_TRUE@@HAVE_NAS_TRUE@output_nas_la_SOURCES = nas.c
|
626
|
+
@HAVE_MODULES_TRUE@@HAVE_NAS_TRUE@output_nas_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @NAS_LDFLAGS@
|
627
|
+
@HAVE_MODULES_TRUE@@HAVE_NAS_TRUE@output_nas_la_CFLAGS = @NAS_CFLAGS@
|
628
|
+
@HAVE_MODULES_TRUE@@HAVE_NAS_TRUE@output_nas_la_LIBADD = @NAS_LIBS@
|
629
|
+
@HAVE_MODULES_TRUE@@HAVE_OSS_TRUE@output_oss_la_SOURCES = oss.c
|
630
|
+
@HAVE_MODULES_TRUE@@HAVE_OSS_TRUE@output_oss_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @OSS_LDFLAGS@
|
631
|
+
@HAVE_MODULES_TRUE@@HAVE_OSS_TRUE@output_oss_la_CFLAGS = @OSS_CFLAGS@
|
632
|
+
@HAVE_MODULES_TRUE@@HAVE_OSS_TRUE@output_oss_la_LIBADD = @OSS_LIBS@
|
633
|
+
@HAVE_MODULES_TRUE@@HAVE_PORTAUDIO_TRUE@output_portaudio_la_SOURCES = portaudio.c
|
634
|
+
@HAVE_MODULES_TRUE@@HAVE_PORTAUDIO_TRUE@output_portaudio_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @PORTAUDIO_LDFLAGS@
|
635
|
+
@HAVE_MODULES_TRUE@@HAVE_PORTAUDIO_TRUE@output_portaudio_la_CFLAGS = @PORTAUDIO_CFLAGS@
|
636
|
+
@HAVE_MODULES_TRUE@@HAVE_PORTAUDIO_TRUE@output_portaudio_la_LIBADD = @PORTAUDIO_LIBS@
|
637
|
+
@HAVE_MODULES_TRUE@@HAVE_PULSE_TRUE@output_pulse_la_SOURCES = pulse.c
|
638
|
+
@HAVE_MODULES_TRUE@@HAVE_PULSE_TRUE@output_pulse_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @PULSE_LDFLAGS@
|
639
|
+
@HAVE_MODULES_TRUE@@HAVE_PULSE_TRUE@output_pulse_la_CFLAGS = @PULSE_CFLAGS@
|
640
|
+
@HAVE_MODULES_TRUE@@HAVE_PULSE_TRUE@output_pulse_la_LIBADD = @PULSE_LIBS@
|
641
|
+
@HAVE_MODULES_TRUE@@HAVE_SDL_TRUE@output_sdl_la_SOURCES = sdl.c
|
642
|
+
@HAVE_MODULES_TRUE@@HAVE_SDL_TRUE@output_sdl_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @SDL_LDFLAGS@
|
643
|
+
@HAVE_MODULES_TRUE@@HAVE_SDL_TRUE@output_sdl_la_CFLAGS = @SDL_CFLAGS@
|
644
|
+
@HAVE_MODULES_TRUE@@HAVE_SDL_TRUE@output_sdl_la_LIBADD = @SDL_LIBS@
|
645
|
+
@HAVE_MODULES_TRUE@@HAVE_SNDIO_TRUE@output_sndio_la_SOURCES = sndio.c
|
646
|
+
@HAVE_MODULES_TRUE@@HAVE_SNDIO_TRUE@output_sndio_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @SNDIO_LDFLAGS@
|
647
|
+
@HAVE_MODULES_TRUE@@HAVE_SNDIO_TRUE@output_sndio_la_CFLAGS = @SNDIO_CFLAGS@
|
648
|
+
@HAVE_MODULES_TRUE@@HAVE_SNDIO_TRUE@output_sndio_la_LIBADD = @SNDIO_LIBS@
|
649
|
+
@HAVE_MODULES_TRUE@@HAVE_SUN_TRUE@output_sun_la_SOURCES = sun.c
|
650
|
+
@HAVE_MODULES_TRUE@@HAVE_SUN_TRUE@output_sun_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @SUN_LDFLAGS@
|
651
|
+
@HAVE_MODULES_TRUE@@HAVE_SUN_TRUE@output_sun_la_CFLAGS = @SUN_CFLAGS@
|
652
|
+
@HAVE_MODULES_TRUE@@HAVE_SUN_TRUE@output_sun_la_LIBADD = @SUN_LIBS@
|
653
|
+
@HAVE_MODULES_TRUE@@HAVE_WIN32_TRUE@output_win32_la_SOURCES = win32.c
|
654
|
+
@HAVE_MODULES_TRUE@@HAVE_WIN32_TRUE@output_win32_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @WIN32_LDFLAGS@
|
655
|
+
@HAVE_MODULES_TRUE@@HAVE_WIN32_TRUE@output_win32_la_CFLAGS = @WIN32_CFLAGS@
|
656
|
+
@HAVE_MODULES_TRUE@@HAVE_WIN32_TRUE@output_win32_la_LIBADD = @WIN32_LIBS@
|
657
|
+
@HAVE_AIX_TRUE@@HAVE_MODULES_TRUE@output_aix_la_SOURCES = aix.c
|
658
|
+
@HAVE_AIX_TRUE@@HAVE_MODULES_TRUE@output_aix_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @AIX_LDFLAGS@
|
659
|
+
@HAVE_AIX_TRUE@@HAVE_MODULES_TRUE@output_aix_la_CFLAGS = @AIX_CFLAGS@
|
660
|
+
@HAVE_AIX_TRUE@@HAVE_MODULES_TRUE@output_aix_la_LIBADD = @AIX_LIBS@
|
661
|
+
@HAVE_ALIB_TRUE@@HAVE_MODULES_TRUE@output_alib_la_SOURCES = alib.c
|
662
|
+
@HAVE_ALIB_TRUE@@HAVE_MODULES_TRUE@output_alib_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @ALIB_LDFLAGS@
|
663
|
+
@HAVE_ALIB_TRUE@@HAVE_MODULES_TRUE@output_alib_la_CFLAGS = @ALIB_CFLAGS@
|
664
|
+
@HAVE_ALIB_TRUE@@HAVE_MODULES_TRUE@output_alib_la_LIBADD = @ALIB_LIBS@
|
665
|
+
@HAVE_ARTS_TRUE@@HAVE_MODULES_TRUE@output_arts_la_SOURCES = arts.c
|
666
|
+
@HAVE_ARTS_TRUE@@HAVE_MODULES_TRUE@output_arts_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @ARTS_LDFLAGS@
|
667
|
+
@HAVE_ARTS_TRUE@@HAVE_MODULES_TRUE@output_arts_la_CFLAGS = @ARTS_CFLAGS@
|
668
|
+
@HAVE_ARTS_TRUE@@HAVE_MODULES_TRUE@output_arts_la_LIBADD = @ARTS_LIBS@
|
669
|
+
@HAVE_HP_TRUE@@HAVE_MODULES_TRUE@output_hp_la_SOURCES = hp.c
|
670
|
+
@HAVE_HP_TRUE@@HAVE_MODULES_TRUE@output_hp_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @HP_LDFLAGS@
|
671
|
+
@HAVE_HP_TRUE@@HAVE_MODULES_TRUE@output_hp_la_CFLAGS = @HP_CFLAGS@
|
672
|
+
@HAVE_HP_TRUE@@HAVE_MODULES_TRUE@output_hp_la_LIBADD = @HP_LIBS@
|
673
|
+
@HAVE_MODULES_TRUE@@HAVE_OS2_TRUE@output_os2_la_SOURCES = os2.c
|
674
|
+
@HAVE_MODULES_TRUE@@HAVE_OS2_TRUE@output_os2_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @OS2_LDFLAGS@
|
675
|
+
@HAVE_MODULES_TRUE@@HAVE_OS2_TRUE@output_os2_la_CFLAGS = @OS2_CFLAGS@
|
676
|
+
@HAVE_MODULES_TRUE@@HAVE_OS2_TRUE@output_os2_la_LIBADD = @OS2_LIBS@
|
677
|
+
@HAVE_MODULES_TRUE@@HAVE_SGI_TRUE@output_sgi_la_SOURCES = sgi.c
|
678
|
+
@HAVE_MODULES_TRUE@@HAVE_SGI_TRUE@output_sgi_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @SGI_LDFLAGS@
|
679
|
+
@HAVE_MODULES_TRUE@@HAVE_SGI_TRUE@output_sgi_la_CFLAGS = @SGI_CFLAGS@
|
680
|
+
@HAVE_MODULES_TRUE@@HAVE_SGI_TRUE@output_sgi_la_LIBADD = @SGI_LIBS@
|
681
|
+
@HAVE_MINT_TRUE@@HAVE_MODULES_TRUE@output_mint_la_SOURCES = mint.c
|
682
|
+
@HAVE_MINT_TRUE@@HAVE_MODULES_TRUE@output_mint_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @MINT_LDFLAGS@
|
683
|
+
@HAVE_MINT_TRUE@@HAVE_MODULES_TRUE@output_mint_la_CFLAGS = @MINT_CFLAGS@
|
684
|
+
@HAVE_MINT_TRUE@@HAVE_MODULES_TRUE@output_mint_la_LIBADD = @MINT_LIBS@
|
685
|
+
@HAVE_MODULES_TRUE@@HAVE_OPENAL_TRUE@output_openal_la_SOURCES = openal.c
|
686
|
+
@HAVE_MODULES_TRUE@@HAVE_OPENAL_TRUE@output_openal_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @OPENAL_LDFLAGS@
|
687
|
+
@HAVE_MODULES_TRUE@@HAVE_OPENAL_TRUE@output_openal_la_CFLAGS = @OPENAL_CFLAGS@
|
688
|
+
@HAVE_MODULES_TRUE@@HAVE_OPENAL_TRUE@output_openal_la_LIBADD = @OPENAL_LIBS@
|
689
|
+
@HAVE_DUMMY_TRUE@@HAVE_MODULES_TRUE@output_dummy_la_SOURCES = dummy.c
|
690
|
+
@HAVE_DUMMY_TRUE@@HAVE_MODULES_TRUE@output_dummy_la_LDFLAGS = -module -no-undefined -avoid-version -export-dynamic -export-symbols-regex '^mpg123_' @DUMMY_LDFLAGS@
|
691
|
+
@HAVE_DUMMY_TRUE@@HAVE_MODULES_TRUE@output_dummy_la_CFLAGS = @DUMMY_CFLAGS@
|
692
|
+
@HAVE_DUMMY_TRUE@@HAVE_MODULES_TRUE@output_dummy_la_LIBADD = @DUMMY_LIBS@
|
693
|
+
|
694
|
+
# Static build of one module only.
|
695
|
+
@HAVE_MODULES_FALSE@AM_CFLAGS = @OUTPUT_CFLAGS@
|
696
|
+
all: all-am
|
697
|
+
|
698
|
+
.SUFFIXES:
|
699
|
+
.SUFFIXES: .c .lo .o .obj
|
700
|
+
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
701
|
+
@for dep in $?; do \
|
702
|
+
case '$(am__configure_deps)' in \
|
703
|
+
*$$dep*) \
|
704
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
705
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
706
|
+
exit 1;; \
|
707
|
+
esac; \
|
708
|
+
done; \
|
709
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/output/Makefile'; \
|
710
|
+
$(am__cd) $(top_srcdir) && \
|
711
|
+
$(AUTOMAKE) --gnu src/output/Makefile
|
712
|
+
.PRECIOUS: Makefile
|
713
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
714
|
+
@case '$?' in \
|
715
|
+
*config.status*) \
|
716
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
717
|
+
*) \
|
718
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
719
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
720
|
+
esac;
|
721
|
+
|
722
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
723
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
724
|
+
|
725
|
+
$(top_srcdir)/configure: $(am__configure_deps)
|
726
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
727
|
+
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
|
728
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
729
|
+
$(am__aclocal_m4_deps):
|
730
|
+
install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES)
|
731
|
+
@$(NORMAL_INSTALL)
|
732
|
+
@list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \
|
733
|
+
list2=; for p in $$list; do \
|
734
|
+
if test -f $$p; then \
|
735
|
+
list2="$$list2 $$p"; \
|
736
|
+
else :; fi; \
|
737
|
+
done; \
|
738
|
+
test -z "$$list2" || { \
|
739
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \
|
740
|
+
$(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \
|
741
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \
|
742
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \
|
743
|
+
}
|
744
|
+
|
745
|
+
uninstall-pkglibLTLIBRARIES:
|
746
|
+
@$(NORMAL_UNINSTALL)
|
747
|
+
@list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \
|
748
|
+
for p in $$list; do \
|
749
|
+
$(am__strip_dir) \
|
750
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \
|
751
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \
|
752
|
+
done
|
753
|
+
|
754
|
+
clean-pkglibLTLIBRARIES:
|
755
|
+
-test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES)
|
756
|
+
@list='$(pkglib_LTLIBRARIES)'; \
|
757
|
+
locs=`for p in $$list; do echo $$p; done | \
|
758
|
+
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
759
|
+
sort -u`; \
|
760
|
+
test -z "$$locs" || { \
|
761
|
+
echo rm -f $${locs}; \
|
762
|
+
rm -f $${locs}; \
|
763
|
+
}
|
764
|
+
output_aix.la: $(output_aix_la_OBJECTS) $(output_aix_la_DEPENDENCIES) $(EXTRA_output_aix_la_DEPENDENCIES)
|
765
|
+
$(output_aix_la_LINK) $(am_output_aix_la_rpath) $(output_aix_la_OBJECTS) $(output_aix_la_LIBADD) $(LIBS)
|
766
|
+
output_alib.la: $(output_alib_la_OBJECTS) $(output_alib_la_DEPENDENCIES) $(EXTRA_output_alib_la_DEPENDENCIES)
|
767
|
+
$(output_alib_la_LINK) $(am_output_alib_la_rpath) $(output_alib_la_OBJECTS) $(output_alib_la_LIBADD) $(LIBS)
|
768
|
+
output_alsa.la: $(output_alsa_la_OBJECTS) $(output_alsa_la_DEPENDENCIES) $(EXTRA_output_alsa_la_DEPENDENCIES)
|
769
|
+
$(output_alsa_la_LINK) $(am_output_alsa_la_rpath) $(output_alsa_la_OBJECTS) $(output_alsa_la_LIBADD) $(LIBS)
|
770
|
+
output_arts.la: $(output_arts_la_OBJECTS) $(output_arts_la_DEPENDENCIES) $(EXTRA_output_arts_la_DEPENDENCIES)
|
771
|
+
$(output_arts_la_LINK) $(am_output_arts_la_rpath) $(output_arts_la_OBJECTS) $(output_arts_la_LIBADD) $(LIBS)
|
772
|
+
output_coreaudio.la: $(output_coreaudio_la_OBJECTS) $(output_coreaudio_la_DEPENDENCIES) $(EXTRA_output_coreaudio_la_DEPENDENCIES)
|
773
|
+
$(output_coreaudio_la_LINK) $(am_output_coreaudio_la_rpath) $(output_coreaudio_la_OBJECTS) $(output_coreaudio_la_LIBADD) $(LIBS)
|
774
|
+
output_dummy.la: $(output_dummy_la_OBJECTS) $(output_dummy_la_DEPENDENCIES) $(EXTRA_output_dummy_la_DEPENDENCIES)
|
775
|
+
$(output_dummy_la_LINK) $(am_output_dummy_la_rpath) $(output_dummy_la_OBJECTS) $(output_dummy_la_LIBADD) $(LIBS)
|
776
|
+
output_esd.la: $(output_esd_la_OBJECTS) $(output_esd_la_DEPENDENCIES) $(EXTRA_output_esd_la_DEPENDENCIES)
|
777
|
+
$(output_esd_la_LINK) $(am_output_esd_la_rpath) $(output_esd_la_OBJECTS) $(output_esd_la_LIBADD) $(LIBS)
|
778
|
+
output_hp.la: $(output_hp_la_OBJECTS) $(output_hp_la_DEPENDENCIES) $(EXTRA_output_hp_la_DEPENDENCIES)
|
779
|
+
$(output_hp_la_LINK) $(am_output_hp_la_rpath) $(output_hp_la_OBJECTS) $(output_hp_la_LIBADD) $(LIBS)
|
780
|
+
output_jack.la: $(output_jack_la_OBJECTS) $(output_jack_la_DEPENDENCIES) $(EXTRA_output_jack_la_DEPENDENCIES)
|
781
|
+
$(output_jack_la_LINK) $(am_output_jack_la_rpath) $(output_jack_la_OBJECTS) $(output_jack_la_LIBADD) $(LIBS)
|
782
|
+
output_mint.la: $(output_mint_la_OBJECTS) $(output_mint_la_DEPENDENCIES) $(EXTRA_output_mint_la_DEPENDENCIES)
|
783
|
+
$(output_mint_la_LINK) $(am_output_mint_la_rpath) $(output_mint_la_OBJECTS) $(output_mint_la_LIBADD) $(LIBS)
|
784
|
+
output_nas.la: $(output_nas_la_OBJECTS) $(output_nas_la_DEPENDENCIES) $(EXTRA_output_nas_la_DEPENDENCIES)
|
785
|
+
$(output_nas_la_LINK) $(am_output_nas_la_rpath) $(output_nas_la_OBJECTS) $(output_nas_la_LIBADD) $(LIBS)
|
786
|
+
output_openal.la: $(output_openal_la_OBJECTS) $(output_openal_la_DEPENDENCIES) $(EXTRA_output_openal_la_DEPENDENCIES)
|
787
|
+
$(output_openal_la_LINK) $(am_output_openal_la_rpath) $(output_openal_la_OBJECTS) $(output_openal_la_LIBADD) $(LIBS)
|
788
|
+
output_os2.la: $(output_os2_la_OBJECTS) $(output_os2_la_DEPENDENCIES) $(EXTRA_output_os2_la_DEPENDENCIES)
|
789
|
+
$(output_os2_la_LINK) $(am_output_os2_la_rpath) $(output_os2_la_OBJECTS) $(output_os2_la_LIBADD) $(LIBS)
|
790
|
+
output_oss.la: $(output_oss_la_OBJECTS) $(output_oss_la_DEPENDENCIES) $(EXTRA_output_oss_la_DEPENDENCIES)
|
791
|
+
$(output_oss_la_LINK) $(am_output_oss_la_rpath) $(output_oss_la_OBJECTS) $(output_oss_la_LIBADD) $(LIBS)
|
792
|
+
output_portaudio.la: $(output_portaudio_la_OBJECTS) $(output_portaudio_la_DEPENDENCIES) $(EXTRA_output_portaudio_la_DEPENDENCIES)
|
793
|
+
$(output_portaudio_la_LINK) $(am_output_portaudio_la_rpath) $(output_portaudio_la_OBJECTS) $(output_portaudio_la_LIBADD) $(LIBS)
|
794
|
+
output_pulse.la: $(output_pulse_la_OBJECTS) $(output_pulse_la_DEPENDENCIES) $(EXTRA_output_pulse_la_DEPENDENCIES)
|
795
|
+
$(output_pulse_la_LINK) $(am_output_pulse_la_rpath) $(output_pulse_la_OBJECTS) $(output_pulse_la_LIBADD) $(LIBS)
|
796
|
+
output_sdl.la: $(output_sdl_la_OBJECTS) $(output_sdl_la_DEPENDENCIES) $(EXTRA_output_sdl_la_DEPENDENCIES)
|
797
|
+
$(output_sdl_la_LINK) $(am_output_sdl_la_rpath) $(output_sdl_la_OBJECTS) $(output_sdl_la_LIBADD) $(LIBS)
|
798
|
+
output_sgi.la: $(output_sgi_la_OBJECTS) $(output_sgi_la_DEPENDENCIES) $(EXTRA_output_sgi_la_DEPENDENCIES)
|
799
|
+
$(output_sgi_la_LINK) $(am_output_sgi_la_rpath) $(output_sgi_la_OBJECTS) $(output_sgi_la_LIBADD) $(LIBS)
|
800
|
+
output_sndio.la: $(output_sndio_la_OBJECTS) $(output_sndio_la_DEPENDENCIES) $(EXTRA_output_sndio_la_DEPENDENCIES)
|
801
|
+
$(output_sndio_la_LINK) $(am_output_sndio_la_rpath) $(output_sndio_la_OBJECTS) $(output_sndio_la_LIBADD) $(LIBS)
|
802
|
+
output_sun.la: $(output_sun_la_OBJECTS) $(output_sun_la_DEPENDENCIES) $(EXTRA_output_sun_la_DEPENDENCIES)
|
803
|
+
$(output_sun_la_LINK) $(am_output_sun_la_rpath) $(output_sun_la_OBJECTS) $(output_sun_la_LIBADD) $(LIBS)
|
804
|
+
output_win32.la: $(output_win32_la_OBJECTS) $(output_win32_la_DEPENDENCIES) $(EXTRA_output_win32_la_DEPENDENCIES)
|
805
|
+
$(output_win32_la_LINK) $(am_output_win32_la_rpath) $(output_win32_la_OBJECTS) $(output_win32_la_LIBADD) $(LIBS)
|
806
|
+
|
807
|
+
mostlyclean-compile:
|
808
|
+
-rm -f *.$(OBJEXT)
|
809
|
+
|
810
|
+
distclean-compile:
|
811
|
+
-rm -f *.tab.c
|
812
|
+
|
813
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_aix_la-aix.Plo@am__quote@
|
814
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_alib_la-alib.Plo@am__quote@
|
815
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_alsa_la-alsa.Plo@am__quote@
|
816
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_arts_la-arts.Plo@am__quote@
|
817
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_coreaudio_la-coreaudio.Plo@am__quote@
|
818
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_dummy_la-dummy.Plo@am__quote@
|
819
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_esd_la-esd.Plo@am__quote@
|
820
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_hp_la-hp.Plo@am__quote@
|
821
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_jack_la-jack.Plo@am__quote@
|
822
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_mint_la-mint.Plo@am__quote@
|
823
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_nas_la-nas.Plo@am__quote@
|
824
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_openal_la-openal.Plo@am__quote@
|
825
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_os2_la-os2.Plo@am__quote@
|
826
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_oss_la-oss.Plo@am__quote@
|
827
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_portaudio_la-portaudio.Plo@am__quote@
|
828
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_pulse_la-pulse.Plo@am__quote@
|
829
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_sdl_la-sdl.Plo@am__quote@
|
830
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_sgi_la-sgi.Plo@am__quote@
|
831
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_sndio_la-sndio.Plo@am__quote@
|
832
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_sun_la-sun.Plo@am__quote@
|
833
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output_win32_la-win32.Plo@am__quote@
|
834
|
+
|
835
|
+
.c.o:
|
836
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
837
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
838
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
839
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
840
|
+
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
841
|
+
|
842
|
+
.c.obj:
|
843
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
844
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
845
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
846
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
847
|
+
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
848
|
+
|
849
|
+
.c.lo:
|
850
|
+
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
851
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
852
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
853
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
854
|
+
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
855
|
+
|
856
|
+
output_aix_la-aix.lo: aix.c
|
857
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_aix_la_CFLAGS) $(CFLAGS) -MT output_aix_la-aix.lo -MD -MP -MF $(DEPDIR)/output_aix_la-aix.Tpo -c -o output_aix_la-aix.lo `test -f 'aix.c' || echo '$(srcdir)/'`aix.c
|
858
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_aix_la-aix.Tpo $(DEPDIR)/output_aix_la-aix.Plo
|
859
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aix.c' object='output_aix_la-aix.lo' libtool=yes @AMDEPBACKSLASH@
|
860
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
861
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_aix_la_CFLAGS) $(CFLAGS) -c -o output_aix_la-aix.lo `test -f 'aix.c' || echo '$(srcdir)/'`aix.c
|
862
|
+
|
863
|
+
output_alib_la-alib.lo: alib.c
|
864
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_alib_la_CFLAGS) $(CFLAGS) -MT output_alib_la-alib.lo -MD -MP -MF $(DEPDIR)/output_alib_la-alib.Tpo -c -o output_alib_la-alib.lo `test -f 'alib.c' || echo '$(srcdir)/'`alib.c
|
865
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_alib_la-alib.Tpo $(DEPDIR)/output_alib_la-alib.Plo
|
866
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='alib.c' object='output_alib_la-alib.lo' libtool=yes @AMDEPBACKSLASH@
|
867
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
868
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_alib_la_CFLAGS) $(CFLAGS) -c -o output_alib_la-alib.lo `test -f 'alib.c' || echo '$(srcdir)/'`alib.c
|
869
|
+
|
870
|
+
output_alsa_la-alsa.lo: alsa.c
|
871
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_alsa_la_CFLAGS) $(CFLAGS) -MT output_alsa_la-alsa.lo -MD -MP -MF $(DEPDIR)/output_alsa_la-alsa.Tpo -c -o output_alsa_la-alsa.lo `test -f 'alsa.c' || echo '$(srcdir)/'`alsa.c
|
872
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_alsa_la-alsa.Tpo $(DEPDIR)/output_alsa_la-alsa.Plo
|
873
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='alsa.c' object='output_alsa_la-alsa.lo' libtool=yes @AMDEPBACKSLASH@
|
874
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
875
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_alsa_la_CFLAGS) $(CFLAGS) -c -o output_alsa_la-alsa.lo `test -f 'alsa.c' || echo '$(srcdir)/'`alsa.c
|
876
|
+
|
877
|
+
output_arts_la-arts.lo: arts.c
|
878
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_arts_la_CFLAGS) $(CFLAGS) -MT output_arts_la-arts.lo -MD -MP -MF $(DEPDIR)/output_arts_la-arts.Tpo -c -o output_arts_la-arts.lo `test -f 'arts.c' || echo '$(srcdir)/'`arts.c
|
879
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_arts_la-arts.Tpo $(DEPDIR)/output_arts_la-arts.Plo
|
880
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='arts.c' object='output_arts_la-arts.lo' libtool=yes @AMDEPBACKSLASH@
|
881
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
882
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_arts_la_CFLAGS) $(CFLAGS) -c -o output_arts_la-arts.lo `test -f 'arts.c' || echo '$(srcdir)/'`arts.c
|
883
|
+
|
884
|
+
output_coreaudio_la-coreaudio.lo: coreaudio.c
|
885
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_coreaudio_la_CFLAGS) $(CFLAGS) -MT output_coreaudio_la-coreaudio.lo -MD -MP -MF $(DEPDIR)/output_coreaudio_la-coreaudio.Tpo -c -o output_coreaudio_la-coreaudio.lo `test -f 'coreaudio.c' || echo '$(srcdir)/'`coreaudio.c
|
886
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_coreaudio_la-coreaudio.Tpo $(DEPDIR)/output_coreaudio_la-coreaudio.Plo
|
887
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='coreaudio.c' object='output_coreaudio_la-coreaudio.lo' libtool=yes @AMDEPBACKSLASH@
|
888
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
889
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_coreaudio_la_CFLAGS) $(CFLAGS) -c -o output_coreaudio_la-coreaudio.lo `test -f 'coreaudio.c' || echo '$(srcdir)/'`coreaudio.c
|
890
|
+
|
891
|
+
output_dummy_la-dummy.lo: dummy.c
|
892
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_dummy_la_CFLAGS) $(CFLAGS) -MT output_dummy_la-dummy.lo -MD -MP -MF $(DEPDIR)/output_dummy_la-dummy.Tpo -c -o output_dummy_la-dummy.lo `test -f 'dummy.c' || echo '$(srcdir)/'`dummy.c
|
893
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_dummy_la-dummy.Tpo $(DEPDIR)/output_dummy_la-dummy.Plo
|
894
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dummy.c' object='output_dummy_la-dummy.lo' libtool=yes @AMDEPBACKSLASH@
|
895
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
896
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_dummy_la_CFLAGS) $(CFLAGS) -c -o output_dummy_la-dummy.lo `test -f 'dummy.c' || echo '$(srcdir)/'`dummy.c
|
897
|
+
|
898
|
+
output_esd_la-esd.lo: esd.c
|
899
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_esd_la_CFLAGS) $(CFLAGS) -MT output_esd_la-esd.lo -MD -MP -MF $(DEPDIR)/output_esd_la-esd.Tpo -c -o output_esd_la-esd.lo `test -f 'esd.c' || echo '$(srcdir)/'`esd.c
|
900
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_esd_la-esd.Tpo $(DEPDIR)/output_esd_la-esd.Plo
|
901
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='esd.c' object='output_esd_la-esd.lo' libtool=yes @AMDEPBACKSLASH@
|
902
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
903
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_esd_la_CFLAGS) $(CFLAGS) -c -o output_esd_la-esd.lo `test -f 'esd.c' || echo '$(srcdir)/'`esd.c
|
904
|
+
|
905
|
+
output_hp_la-hp.lo: hp.c
|
906
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_hp_la_CFLAGS) $(CFLAGS) -MT output_hp_la-hp.lo -MD -MP -MF $(DEPDIR)/output_hp_la-hp.Tpo -c -o output_hp_la-hp.lo `test -f 'hp.c' || echo '$(srcdir)/'`hp.c
|
907
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_hp_la-hp.Tpo $(DEPDIR)/output_hp_la-hp.Plo
|
908
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='hp.c' object='output_hp_la-hp.lo' libtool=yes @AMDEPBACKSLASH@
|
909
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
910
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_hp_la_CFLAGS) $(CFLAGS) -c -o output_hp_la-hp.lo `test -f 'hp.c' || echo '$(srcdir)/'`hp.c
|
911
|
+
|
912
|
+
output_jack_la-jack.lo: jack.c
|
913
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_jack_la_CFLAGS) $(CFLAGS) -MT output_jack_la-jack.lo -MD -MP -MF $(DEPDIR)/output_jack_la-jack.Tpo -c -o output_jack_la-jack.lo `test -f 'jack.c' || echo '$(srcdir)/'`jack.c
|
914
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_jack_la-jack.Tpo $(DEPDIR)/output_jack_la-jack.Plo
|
915
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='jack.c' object='output_jack_la-jack.lo' libtool=yes @AMDEPBACKSLASH@
|
916
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
917
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_jack_la_CFLAGS) $(CFLAGS) -c -o output_jack_la-jack.lo `test -f 'jack.c' || echo '$(srcdir)/'`jack.c
|
918
|
+
|
919
|
+
output_mint_la-mint.lo: mint.c
|
920
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_mint_la_CFLAGS) $(CFLAGS) -MT output_mint_la-mint.lo -MD -MP -MF $(DEPDIR)/output_mint_la-mint.Tpo -c -o output_mint_la-mint.lo `test -f 'mint.c' || echo '$(srcdir)/'`mint.c
|
921
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_mint_la-mint.Tpo $(DEPDIR)/output_mint_la-mint.Plo
|
922
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mint.c' object='output_mint_la-mint.lo' libtool=yes @AMDEPBACKSLASH@
|
923
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
924
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_mint_la_CFLAGS) $(CFLAGS) -c -o output_mint_la-mint.lo `test -f 'mint.c' || echo '$(srcdir)/'`mint.c
|
925
|
+
|
926
|
+
output_nas_la-nas.lo: nas.c
|
927
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_nas_la_CFLAGS) $(CFLAGS) -MT output_nas_la-nas.lo -MD -MP -MF $(DEPDIR)/output_nas_la-nas.Tpo -c -o output_nas_la-nas.lo `test -f 'nas.c' || echo '$(srcdir)/'`nas.c
|
928
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_nas_la-nas.Tpo $(DEPDIR)/output_nas_la-nas.Plo
|
929
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='nas.c' object='output_nas_la-nas.lo' libtool=yes @AMDEPBACKSLASH@
|
930
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
931
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_nas_la_CFLAGS) $(CFLAGS) -c -o output_nas_la-nas.lo `test -f 'nas.c' || echo '$(srcdir)/'`nas.c
|
932
|
+
|
933
|
+
output_openal_la-openal.lo: openal.c
|
934
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_openal_la_CFLAGS) $(CFLAGS) -MT output_openal_la-openal.lo -MD -MP -MF $(DEPDIR)/output_openal_la-openal.Tpo -c -o output_openal_la-openal.lo `test -f 'openal.c' || echo '$(srcdir)/'`openal.c
|
935
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_openal_la-openal.Tpo $(DEPDIR)/output_openal_la-openal.Plo
|
936
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='openal.c' object='output_openal_la-openal.lo' libtool=yes @AMDEPBACKSLASH@
|
937
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
938
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_openal_la_CFLAGS) $(CFLAGS) -c -o output_openal_la-openal.lo `test -f 'openal.c' || echo '$(srcdir)/'`openal.c
|
939
|
+
|
940
|
+
output_os2_la-os2.lo: os2.c
|
941
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_os2_la_CFLAGS) $(CFLAGS) -MT output_os2_la-os2.lo -MD -MP -MF $(DEPDIR)/output_os2_la-os2.Tpo -c -o output_os2_la-os2.lo `test -f 'os2.c' || echo '$(srcdir)/'`os2.c
|
942
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_os2_la-os2.Tpo $(DEPDIR)/output_os2_la-os2.Plo
|
943
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='os2.c' object='output_os2_la-os2.lo' libtool=yes @AMDEPBACKSLASH@
|
944
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
945
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_os2_la_CFLAGS) $(CFLAGS) -c -o output_os2_la-os2.lo `test -f 'os2.c' || echo '$(srcdir)/'`os2.c
|
946
|
+
|
947
|
+
output_oss_la-oss.lo: oss.c
|
948
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_oss_la_CFLAGS) $(CFLAGS) -MT output_oss_la-oss.lo -MD -MP -MF $(DEPDIR)/output_oss_la-oss.Tpo -c -o output_oss_la-oss.lo `test -f 'oss.c' || echo '$(srcdir)/'`oss.c
|
949
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_oss_la-oss.Tpo $(DEPDIR)/output_oss_la-oss.Plo
|
950
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='oss.c' object='output_oss_la-oss.lo' libtool=yes @AMDEPBACKSLASH@
|
951
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
952
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_oss_la_CFLAGS) $(CFLAGS) -c -o output_oss_la-oss.lo `test -f 'oss.c' || echo '$(srcdir)/'`oss.c
|
953
|
+
|
954
|
+
output_portaudio_la-portaudio.lo: portaudio.c
|
955
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_portaudio_la_CFLAGS) $(CFLAGS) -MT output_portaudio_la-portaudio.lo -MD -MP -MF $(DEPDIR)/output_portaudio_la-portaudio.Tpo -c -o output_portaudio_la-portaudio.lo `test -f 'portaudio.c' || echo '$(srcdir)/'`portaudio.c
|
956
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_portaudio_la-portaudio.Tpo $(DEPDIR)/output_portaudio_la-portaudio.Plo
|
957
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='portaudio.c' object='output_portaudio_la-portaudio.lo' libtool=yes @AMDEPBACKSLASH@
|
958
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
959
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_portaudio_la_CFLAGS) $(CFLAGS) -c -o output_portaudio_la-portaudio.lo `test -f 'portaudio.c' || echo '$(srcdir)/'`portaudio.c
|
960
|
+
|
961
|
+
output_pulse_la-pulse.lo: pulse.c
|
962
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_pulse_la_CFLAGS) $(CFLAGS) -MT output_pulse_la-pulse.lo -MD -MP -MF $(DEPDIR)/output_pulse_la-pulse.Tpo -c -o output_pulse_la-pulse.lo `test -f 'pulse.c' || echo '$(srcdir)/'`pulse.c
|
963
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_pulse_la-pulse.Tpo $(DEPDIR)/output_pulse_la-pulse.Plo
|
964
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='pulse.c' object='output_pulse_la-pulse.lo' libtool=yes @AMDEPBACKSLASH@
|
965
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
966
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_pulse_la_CFLAGS) $(CFLAGS) -c -o output_pulse_la-pulse.lo `test -f 'pulse.c' || echo '$(srcdir)/'`pulse.c
|
967
|
+
|
968
|
+
output_sdl_la-sdl.lo: sdl.c
|
969
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_sdl_la_CFLAGS) $(CFLAGS) -MT output_sdl_la-sdl.lo -MD -MP -MF $(DEPDIR)/output_sdl_la-sdl.Tpo -c -o output_sdl_la-sdl.lo `test -f 'sdl.c' || echo '$(srcdir)/'`sdl.c
|
970
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_sdl_la-sdl.Tpo $(DEPDIR)/output_sdl_la-sdl.Plo
|
971
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sdl.c' object='output_sdl_la-sdl.lo' libtool=yes @AMDEPBACKSLASH@
|
972
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
973
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_sdl_la_CFLAGS) $(CFLAGS) -c -o output_sdl_la-sdl.lo `test -f 'sdl.c' || echo '$(srcdir)/'`sdl.c
|
974
|
+
|
975
|
+
output_sgi_la-sgi.lo: sgi.c
|
976
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_sgi_la_CFLAGS) $(CFLAGS) -MT output_sgi_la-sgi.lo -MD -MP -MF $(DEPDIR)/output_sgi_la-sgi.Tpo -c -o output_sgi_la-sgi.lo `test -f 'sgi.c' || echo '$(srcdir)/'`sgi.c
|
977
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_sgi_la-sgi.Tpo $(DEPDIR)/output_sgi_la-sgi.Plo
|
978
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sgi.c' object='output_sgi_la-sgi.lo' libtool=yes @AMDEPBACKSLASH@
|
979
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
980
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_sgi_la_CFLAGS) $(CFLAGS) -c -o output_sgi_la-sgi.lo `test -f 'sgi.c' || echo '$(srcdir)/'`sgi.c
|
981
|
+
|
982
|
+
output_sndio_la-sndio.lo: sndio.c
|
983
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_sndio_la_CFLAGS) $(CFLAGS) -MT output_sndio_la-sndio.lo -MD -MP -MF $(DEPDIR)/output_sndio_la-sndio.Tpo -c -o output_sndio_la-sndio.lo `test -f 'sndio.c' || echo '$(srcdir)/'`sndio.c
|
984
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_sndio_la-sndio.Tpo $(DEPDIR)/output_sndio_la-sndio.Plo
|
985
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sndio.c' object='output_sndio_la-sndio.lo' libtool=yes @AMDEPBACKSLASH@
|
986
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
987
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_sndio_la_CFLAGS) $(CFLAGS) -c -o output_sndio_la-sndio.lo `test -f 'sndio.c' || echo '$(srcdir)/'`sndio.c
|
988
|
+
|
989
|
+
output_sun_la-sun.lo: sun.c
|
990
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_sun_la_CFLAGS) $(CFLAGS) -MT output_sun_la-sun.lo -MD -MP -MF $(DEPDIR)/output_sun_la-sun.Tpo -c -o output_sun_la-sun.lo `test -f 'sun.c' || echo '$(srcdir)/'`sun.c
|
991
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_sun_la-sun.Tpo $(DEPDIR)/output_sun_la-sun.Plo
|
992
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sun.c' object='output_sun_la-sun.lo' libtool=yes @AMDEPBACKSLASH@
|
993
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
994
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_sun_la_CFLAGS) $(CFLAGS) -c -o output_sun_la-sun.lo `test -f 'sun.c' || echo '$(srcdir)/'`sun.c
|
995
|
+
|
996
|
+
output_win32_la-win32.lo: win32.c
|
997
|
+
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_win32_la_CFLAGS) $(CFLAGS) -MT output_win32_la-win32.lo -MD -MP -MF $(DEPDIR)/output_win32_la-win32.Tpo -c -o output_win32_la-win32.lo `test -f 'win32.c' || echo '$(srcdir)/'`win32.c
|
998
|
+
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/output_win32_la-win32.Tpo $(DEPDIR)/output_win32_la-win32.Plo
|
999
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='win32.c' object='output_win32_la-win32.lo' libtool=yes @AMDEPBACKSLASH@
|
1000
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1001
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(output_win32_la_CFLAGS) $(CFLAGS) -c -o output_win32_la-win32.lo `test -f 'win32.c' || echo '$(srcdir)/'`win32.c
|
1002
|
+
|
1003
|
+
mostlyclean-libtool:
|
1004
|
+
-rm -f *.lo
|
1005
|
+
|
1006
|
+
clean-libtool:
|
1007
|
+
-rm -rf .libs _libs
|
1008
|
+
|
1009
|
+
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
1010
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
1011
|
+
unique=`for i in $$list; do \
|
1012
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
1013
|
+
done | \
|
1014
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
1015
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
1016
|
+
mkid -fID $$unique
|
1017
|
+
tags: TAGS
|
1018
|
+
|
1019
|
+
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
1020
|
+
$(TAGS_FILES) $(LISP)
|
1021
|
+
set x; \
|
1022
|
+
here=`pwd`; \
|
1023
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
1024
|
+
unique=`for i in $$list; do \
|
1025
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
1026
|
+
done | \
|
1027
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
1028
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
1029
|
+
shift; \
|
1030
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
1031
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
1032
|
+
if test $$# -gt 0; then \
|
1033
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
1034
|
+
"$$@" $$unique; \
|
1035
|
+
else \
|
1036
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
1037
|
+
$$unique; \
|
1038
|
+
fi; \
|
1039
|
+
fi
|
1040
|
+
ctags: CTAGS
|
1041
|
+
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
1042
|
+
$(TAGS_FILES) $(LISP)
|
1043
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
1044
|
+
unique=`for i in $$list; do \
|
1045
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
1046
|
+
done | \
|
1047
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
1048
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
1049
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
1050
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
1051
|
+
$$unique
|
1052
|
+
|
1053
|
+
GTAGS:
|
1054
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
1055
|
+
&& $(am__cd) $(top_srcdir) \
|
1056
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
1057
|
+
|
1058
|
+
cscopelist: $(HEADERS) $(SOURCES) $(LISP)
|
1059
|
+
list='$(SOURCES) $(HEADERS) $(LISP)'; \
|
1060
|
+
case "$(srcdir)" in \
|
1061
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
1062
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
1063
|
+
esac; \
|
1064
|
+
for i in $$list; do \
|
1065
|
+
if test -f "$$i"; then \
|
1066
|
+
echo "$(subdir)/$$i"; \
|
1067
|
+
else \
|
1068
|
+
echo "$$sdir/$$i"; \
|
1069
|
+
fi; \
|
1070
|
+
done >> $(top_builddir)/cscope.files
|
1071
|
+
|
1072
|
+
distclean-tags:
|
1073
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
1074
|
+
|
1075
|
+
distdir: $(DISTFILES)
|
1076
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
1077
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
1078
|
+
list='$(DISTFILES)'; \
|
1079
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
1080
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
1081
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
1082
|
+
case $$dist_files in \
|
1083
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
1084
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
1085
|
+
sort -u` ;; \
|
1086
|
+
esac; \
|
1087
|
+
for file in $$dist_files; do \
|
1088
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
1089
|
+
if test -d $$d/$$file; then \
|
1090
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
1091
|
+
if test -d "$(distdir)/$$file"; then \
|
1092
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
1093
|
+
fi; \
|
1094
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
1095
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
1096
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
1097
|
+
fi; \
|
1098
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
1099
|
+
else \
|
1100
|
+
test -f "$(distdir)/$$file" \
|
1101
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
1102
|
+
|| exit 1; \
|
1103
|
+
fi; \
|
1104
|
+
done
|
1105
|
+
check-am: all-am
|
1106
|
+
check: check-am
|
1107
|
+
all-am: Makefile $(LTLIBRARIES)
|
1108
|
+
installdirs:
|
1109
|
+
for dir in "$(DESTDIR)$(pkglibdir)"; do \
|
1110
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
1111
|
+
done
|
1112
|
+
@HAVE_MODULES_TRUE@install: install-am
|
1113
|
+
install-exec: install-exec-am
|
1114
|
+
install-data: install-data-am
|
1115
|
+
uninstall: uninstall-am
|
1116
|
+
|
1117
|
+
install-am: all-am
|
1118
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
1119
|
+
|
1120
|
+
installcheck: installcheck-am
|
1121
|
+
install-strip:
|
1122
|
+
if test -z '$(STRIP)'; then \
|
1123
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
1124
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
1125
|
+
install; \
|
1126
|
+
else \
|
1127
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
1128
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
1129
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
1130
|
+
fi
|
1131
|
+
mostlyclean-generic:
|
1132
|
+
|
1133
|
+
clean-generic:
|
1134
|
+
|
1135
|
+
distclean-generic:
|
1136
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
1137
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
1138
|
+
|
1139
|
+
maintainer-clean-generic:
|
1140
|
+
@echo "This command is intended for maintainers to use"
|
1141
|
+
@echo "it deletes files that may require special tools to rebuild."
|
1142
|
+
clean: clean-am
|
1143
|
+
|
1144
|
+
clean-am: clean-generic clean-libtool clean-pkglibLTLIBRARIES \
|
1145
|
+
mostlyclean-am
|
1146
|
+
|
1147
|
+
distclean: distclean-am
|
1148
|
+
-rm -rf ./$(DEPDIR)
|
1149
|
+
-rm -f Makefile
|
1150
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
1151
|
+
distclean-tags
|
1152
|
+
|
1153
|
+
dvi: dvi-am
|
1154
|
+
|
1155
|
+
dvi-am:
|
1156
|
+
|
1157
|
+
html: html-am
|
1158
|
+
|
1159
|
+
html-am:
|
1160
|
+
|
1161
|
+
info: info-am
|
1162
|
+
|
1163
|
+
info-am:
|
1164
|
+
|
1165
|
+
install-data-am:
|
1166
|
+
|
1167
|
+
install-dvi: install-dvi-am
|
1168
|
+
|
1169
|
+
install-dvi-am:
|
1170
|
+
|
1171
|
+
install-exec-am: install-pkglibLTLIBRARIES
|
1172
|
+
|
1173
|
+
install-html: install-html-am
|
1174
|
+
|
1175
|
+
install-html-am:
|
1176
|
+
|
1177
|
+
install-info: install-info-am
|
1178
|
+
|
1179
|
+
install-info-am:
|
1180
|
+
|
1181
|
+
install-man:
|
1182
|
+
|
1183
|
+
install-pdf: install-pdf-am
|
1184
|
+
|
1185
|
+
install-pdf-am:
|
1186
|
+
|
1187
|
+
install-ps: install-ps-am
|
1188
|
+
|
1189
|
+
install-ps-am:
|
1190
|
+
|
1191
|
+
installcheck-am:
|
1192
|
+
|
1193
|
+
maintainer-clean: maintainer-clean-am
|
1194
|
+
-rm -rf ./$(DEPDIR)
|
1195
|
+
-rm -f Makefile
|
1196
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
1197
|
+
|
1198
|
+
mostlyclean: mostlyclean-am
|
1199
|
+
|
1200
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
1201
|
+
mostlyclean-libtool
|
1202
|
+
|
1203
|
+
pdf: pdf-am
|
1204
|
+
|
1205
|
+
pdf-am:
|
1206
|
+
|
1207
|
+
ps: ps-am
|
1208
|
+
|
1209
|
+
ps-am:
|
1210
|
+
|
1211
|
+
uninstall-am: uninstall-pkglibLTLIBRARIES
|
1212
|
+
|
1213
|
+
.MAKE: install-am install-strip
|
1214
|
+
|
1215
|
+
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
1216
|
+
clean-libtool clean-pkglibLTLIBRARIES cscopelist ctags \
|
1217
|
+
distclean distclean-compile distclean-generic \
|
1218
|
+
distclean-libtool distclean-tags distdir dvi dvi-am html \
|
1219
|
+
html-am info info-am install install-am install-data \
|
1220
|
+
install-data-am install-dvi install-dvi-am install-exec \
|
1221
|
+
install-exec-am install-html install-html-am install-info \
|
1222
|
+
install-info-am install-man install-pdf install-pdf-am \
|
1223
|
+
install-pkglibLTLIBRARIES install-ps install-ps-am \
|
1224
|
+
install-strip installcheck installcheck-am installdirs \
|
1225
|
+
maintainer-clean maintainer-clean-generic mostlyclean \
|
1226
|
+
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
|
1227
|
+
pdf pdf-am ps ps-am tags uninstall uninstall-am \
|
1228
|
+
uninstall-pkglibLTLIBRARIES
|
1229
|
+
|
1230
|
+
|
1231
|
+
@HAVE_MODULES_FALSE@all: @OUTPUT_MOD@.$(OBJEXT)
|
1232
|
+
|
1233
|
+
# No installation happening from here
|
1234
|
+
@HAVE_MODULES_FALSE@install: all
|
1235
|
+
|
1236
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
1237
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
1238
|
+
.NOEXPORT:
|