blob: 30ac4d62fc2baba33cb1deda5fc79fa7e8d920bc [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001# FLAC - Free Lossless Audio Codec
Josh Coalson0395dac2006-04-25 06:59:33 +00002# Copyright (C) 2001,2002,2003,2004,2005,2006 Josh Coalson
Josh Coalson6b05bc52001-06-08 00:13:21 +00003#
Josh Coalsone8a76012003-02-07 00:14:32 +00004# This file is part the FLAC project. FLAC is comprised of several
5# components distributed under difference licenses. The codec libraries
6# are distributed under Xiph.Org's BSD-like license (see the file
7# COPYING.Xiph in this distribution). All other programs, libraries, and
8# plugins are distributed under the GPL (see COPYING.GPL). The documentation
9# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
10# FLAC distribution contains at the top the terms under which it may be
11# distributed.
Josh Coalson6b05bc52001-06-08 00:13:21 +000012#
Josh Coalsone8a76012003-02-07 00:14:32 +000013# Since this particular file is relevant to all components of FLAC,
14# it may be distributed under the Xiph.Org license, which is the least
15# restrictive of those mentioned above. See the file COPYING.Xiph in this
16# distribution.
Josh Coalson6b05bc52001-06-08 00:13:21 +000017
Josh Coalson0e3576e2001-05-25 00:07:51 +000018# NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__
Josh Coalsoncf030c82001-05-23 20:59:48 +000019# instead of FLAC__ since autoconf triggers off 'AC_' in strings
20
Josh Coalson9f429ba2001-01-19 22:39:39 +000021AC_INIT(src/flac/main.c)
Josh Coalson95b89682006-08-29 03:28:21 +000022AM_INIT_AUTOMAKE(flac, 1.1.3)
Josh Coalson9f429ba2001-01-19 22:39:39 +000023
Matt Zimmerman057b5322002-10-05 14:41:19 +000024# Don't automagically regenerate autoconf/automake generated files unless
25# explicitly requested. Eases autobuilding -mdz
26AM_MAINTAINER_MODE
27
Josh Coalson9f429ba2001-01-19 22:39:39 +000028# We need two libtools, one that builds both shared and static, and
29# one that builds only static. This is because the resulting libtool
30# does not allow us to choose which to build at runtime.
31AM_PROG_LIBTOOL
32sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
33chmod +x libtool-disable-static
34
Josh Coalson33f4ce52005-09-02 05:07:35 +000035AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
36
Josh Coalson985dd8d2004-07-29 05:25:36 +000037AM_PROG_AS
Josh Coalson57ba6f42002-06-07 05:27:37 +000038AC_PROG_CXX
Josh Coalson9f429ba2001-01-19 22:39:39 +000039AC_PROG_MAKE_SET
40
Josh Coalson6977bda2006-05-22 00:07:21 +000041AC_SYS_LARGEFILE
42AC_FUNC_FSEEKO
43
Josh Coalsonb1ec7962006-05-24 04:41:36 +000044#@@@ new name is AC_CONFIG_HEADERS
45AM_CONFIG_HEADER(config.h)
46
Josh Coalson27ae3482005-01-27 03:59:55 +000047AC_CHECK_TYPES(socklen_t, [], [])
48
Josh Coalson5a804ca2002-05-17 06:08:13 +000049dnl check for getopt in standard library
50dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
51AC_CHECK_FUNCS(getopt_long, [], [])
52
Josh Coalson5a804ca2002-05-17 06:08:13 +000053case "$host_cpu" in
Josh Coalsonb1ec7962006-05-24 04:41:36 +000054 i*86)
55 cpu_ia32=true
56 AC_DEFINE(FLAC__CPU_IA32)
57 AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
58 ;;
59 powerpc)
60 cpu_ppc=true
61 AC_DEFINE(FLAC__CPU_PPC)
62 AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
63 ;;
64 sparc)
65 cpu_sparc=true
66 AC_DEFINE(FLAC__CPU_SPARC)
67 AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
68 ;;
Josh Coalsoncf030c82001-05-23 20:59:48 +000069esac
Josh Coalsonb1ec7962006-05-24 04:41:36 +000070AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
71AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
72AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
Josh Coalsonda0adb22001-06-18 23:07:19 +000073case "$host" in
Josh Coalsonc0852172003-04-27 08:32:41 +000074 i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
Josh Coalson91018c82005-12-02 05:31:29 +000075 *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
Josh Coalsonda0adb22001-06-18 23:07:19 +000076 *) OBJ_FORMAT=elf ;;
77esac
Josh Coalson27ae3482005-01-27 03:59:55 +000078AC_SUBST(OBJ_FORMAT)
79case "$host" in
Josh Coalsonb1ec7962006-05-24 04:41:36 +000080 *-pc-linux-gnu)
81 sys_linux=true
82 AC_DEFINE(FLAC__SYS_LINUX)
83 AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
84 ;;
85 *-*-darwin*)
86 sys_darwin=true
87 AC_DEFINE(FLAC__SYS_DARWIN)
88 AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
89 ;;
Josh Coalson27ae3482005-01-27 03:59:55 +000090esac
Josh Coalsonb1ec7962006-05-24 04:41:36 +000091AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue)
92AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue)
Josh Coalsoncf030c82001-05-23 20:59:48 +000093
Josh Coalsonb1ec7962006-05-24 04:41:36 +000094if test "x$cpu_ia32" = xtrue ; then
Josh Coalson0e3576e2001-05-25 00:07:51 +000095AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
Josh Coalsonb1ec7962006-05-24 04:41:36 +000096AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
Josh Coalson0e3576e2001-05-25 00:07:51 +000097fi
Josh Coalsoncf030c82001-05-23 20:59:48 +000098
Josh Coalsonb1ec7962006-05-24 04:41:36 +000099AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
100AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno)
101if test "x$asm_opt" = xno ; then
Josh Coalson0e3576e2001-05-25 00:07:51 +0000102AC_DEFINE(FLAC__NO_ASM)
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000103AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
Josh Coalson0e3576e2001-05-25 00:07:51 +0000104fi
Josh Coalsoncf030c82001-05-23 20:59:48 +0000105
Josh Coalson9f429ba2001-01-19 22:39:39 +0000106AC_ARG_ENABLE(debug,
Josh Coalsonde9091e2006-05-25 02:48:22 +0000107AC_HELP_STRING([--enable-debug], [Turn on debugging]),
Josh Coalsonda0adb22001-06-18 23:07:19 +0000108[case "${enableval}" in
109 yes) debug=true ;;
110 no) debug=false ;;
111 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
112esac],[debug=false])
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000113AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue)
Josh Coalson9f429ba2001-01-19 22:39:39 +0000114
Josh Coalsonbb14ae82001-12-04 06:46:35 +0000115AC_ARG_ENABLE(sse,
Josh Coalsonde9091e2006-05-25 02:48:22 +0000116AC_HELP_STRING([--enable-sse], [Enable SSE support by asserting that the OS supports SSE instructions]),
Josh Coalsond01b13a2001-07-18 00:27:06 +0000117[case "${enableval}" in
118 yes) sse_os=true ;;
119 no) sse_os=false ;;
Josh Coalsonbb14ae82001-12-04 06:46:35 +0000120 *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
Josh Coalsond01b13a2001-07-18 00:27:06 +0000121esac],[sse_os=false])
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000122AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue)
123if test "x$sse_os" = xtrue ; then
Josh Coalsond01b13a2001-07-18 00:27:06 +0000124AC_DEFINE(FLAC__SSE_OS)
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000125AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
Josh Coalsond01b13a2001-07-18 00:27:06 +0000126fi
127
Josh Coalson28311cf2002-12-26 19:35:19 +0000128AC_ARG_ENABLE(3dnow,
Josh Coalsonde9091e2006-05-25 02:48:22 +0000129AC_HELP_STRING([--disable-3dnow], [Disable 3DNOW! optimizations]),
Josh Coalson28311cf2002-12-26 19:35:19 +0000130[case "${enableval}" in
131 yes) use_3dnow=true ;;
132 no) use_3dnow=false ;;
133 *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
134esac],[use_3dnow=true])
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000135AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue)
136if test "x$use_3dnow" = xtrue ; then
Josh Coalsonc69f8782001-11-13 23:08:22 +0000137AC_DEFINE(FLAC__USE_3DNOW)
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000138AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
Josh Coalsonc69f8782001-11-13 23:08:22 +0000139fi
140
Josh Coalson3aadd102004-07-27 01:13:16 +0000141AC_ARG_ENABLE(altivec,
Josh Coalsonde9091e2006-05-25 02:48:22 +0000142AC_HELP_STRING([--disable-altivec], [Disable Altivec optimizations]),
Josh Coalson3aadd102004-07-27 01:13:16 +0000143[case "${enableval}" in
144 yes) use_altivec=true ;;
145 no) use_altivec=false ;;
146 *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
147esac],[use_altivec=true])
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000148AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue)
149if test "x$use_altivec" = xtrue ; then
Josh Coalson3aadd102004-07-27 01:13:16 +0000150AC_DEFINE(FLAC__USE_ALTIVEC)
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000151AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
Josh Coalson3aadd102004-07-27 01:13:16 +0000152fi
153
Josh Coalsonde9091e2006-05-25 02:48:22 +0000154AC_ARG_ENABLE(thorough-tests,
155AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]),
156[case "${enableval}" in
157 yes) thorough_tests=true ;;
158 no) thorough_tests=false ;;
159 *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;;
160esac],[thorough_tests=true])
Josh Coalson9b145182002-08-30 05:39:36 +0000161AC_ARG_ENABLE(exhaustive-tests,
Josh Coalsonde9091e2006-05-25 02:48:22 +0000162AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]),
Josh Coalson9b145182002-08-30 05:39:36 +0000163[case "${enableval}" in
164 yes) exhaustive_tests=true ;;
165 no) exhaustive_tests=false ;;
166 *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
167esac],[exhaustive_tests=false])
Josh Coalsonde9091e2006-05-25 02:48:22 +0000168if test "x$thorough_tests" = xfalse ; then
169FLAC__TEST_LEVEL=0
170elif test "x$exhaustive_tests" = xfalse ; then
171FLAC__TEST_LEVEL=1
172else
173FLAC__TEST_LEVEL=2
Josh Coalson962bb3b2002-12-28 07:08:31 +0000174fi
Josh Coalsonde9091e2006-05-25 02:48:22 +0000175AC_SUBST(FLAC__TEST_LEVEL)
Josh Coalsond1923622002-12-05 06:36:12 +0000176
177AC_ARG_ENABLE(valgrind-testing,
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000178AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]),
Josh Coalsond1923622002-12-05 06:36:12 +0000179[case "${enableval}" in
Josh Coalsonde9091e2006-05-25 02:48:22 +0000180 yes) FLAC__TEST_WITH_VALGRIND=yes ;;
181 no) FLAC__TEST_WITH_VALGRIND=no ;;
Josh Coalsond1923622002-12-05 06:36:12 +0000182 *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
Josh Coalsonde9091e2006-05-25 02:48:22 +0000183esac],[FLAC__TEST_WITH_VALGRIND=no])
184AC_SUBST(FLAC__TEST_WITH_VALGRIND)
Josh Coalson9b145182002-08-30 05:39:36 +0000185
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000186AC_ARG_ENABLE(doxygen-docs,
187AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]),
188[case "${enableval}" in
189 yes) enable_doxygen_docs=true ;;
190 no) enable_doxygen_docs=false ;;
191 *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;;
192esac],[enable_doxygen_docs=true])
Josh Coalsonc933c932006-05-25 04:21:43 +0000193if test "x$enable_doxygen_docs" != xfalse ; then
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000194 AC_CHECK_PROGS(DOXYGEN, doxygen)
195fi
196AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
197
Josh Coalsonc933c932006-05-25 04:21:43 +0000198AC_ARG_ENABLE(local-xmms-plugin,
199AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
200[case "${enableval}" in
201 yes) install_xmms_plugin_locally=true ;;
202 no) install_xmms_plugin_locally=false ;;
203 *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
204esac],[install_xmms_plugin_locally=false])
205AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
206
207AC_ARG_ENABLE(xmms-plugin,
208AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]),
209[case "${enableval}" in
210 yes) enable_xmms_plugin=true ;;
211 no) enable_xmms_plugin=false ;;
212 *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;;
213esac],[enable_xmms_plugin=true])
214if test "x$enable_xmms_plugin" != xfalse ; then
215 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built]))
216fi
217AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
218
Josh Coalsone2fece22002-09-09 21:54:28 +0000219dnl check for ogg library
Josh Coalson3f6c9982002-09-05 05:40:58 +0000220XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000221AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
222if test "x$have_ogg" = xyes ; then
Josh Coalsonc8a7d352001-11-11 03:59:46 +0000223AC_DEFINE(FLAC__HAS_OGG)
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000224AH_TEMPLATE(FLAC__HAS_OGG, [define if you have the ogg library])
Josh Coalsonc8a7d352001-11-11 03:59:46 +0000225fi
Josh Coalsonf7fc5c82001-10-31 18:31:36 +0000226
Josh Coalson130cbb52002-07-16 16:12:27 +0000227dnl check for i18n(internationalization); these are from libiconv/gettext
Josh Coalson412fa3b2002-07-11 06:15:30 +0000228AM_ICONV
229AM_LANGINFO_CODESET
230
Josh Coalson90e57162004-07-30 00:46:39 +0000231AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
232AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
233if test -n "$DOCBOOK_TO_MAN" ; then
234AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000235AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
Josh Coalson90e57162004-07-30 00:46:39 +0000236fi
237
Josh Coalsonb9900222004-12-30 01:13:03 +0000238# only matters for x86
Josh Coalsoncf030c82001-05-23 20:59:48 +0000239AC_CHECK_PROGS(NASM, nasm)
240AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
Josh Coalson0e3576e2001-05-25 00:07:51 +0000241if test -n "$NASM" ; then
242AC_DEFINE(FLAC__HAS_NASM)
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000243AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
Josh Coalson0e3576e2001-05-25 00:07:51 +0000244fi
Josh Coalson9f429ba2001-01-19 22:39:39 +0000245
Josh Coalsonb9900222004-12-30 01:13:03 +0000246# only matters for PowerPC
Josh Coalsona02b73f2005-03-02 05:21:06 +0000247AC_CHECK_PROGS(AS, as, as)
248AC_CHECK_PROGS(GAS, gas, gas)
249
250test "$AS" = "as" && as --version | grep GNU >/dev/null && AS=gas
251
252AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as")
253AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas")
254if test "$AS" = "as" ; then
Josh Coalsonb9900222004-12-30 01:13:03 +0000255AC_DEFINE(FLAC__HAS_AS)
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000256AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
Josh Coalsonb9900222004-12-30 01:13:03 +0000257fi
Josh Coalsona02b73f2005-03-02 05:21:06 +0000258if test "$AS" = "gas" ; then
Josh Coalsonb9900222004-12-30 01:13:03 +0000259# funniest. macro. ever.
260AC_DEFINE(FLAC__HAS_GAS)
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000261AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
Josh Coalsonb9900222004-12-30 01:13:03 +0000262fi
263
Josh Coalson57ba6f42002-06-07 05:27:37 +0000264OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000265if test "x$debug" = xtrue; then
Josh Coalson20809742003-01-10 04:39:20 +0000266 OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -O0 -DDEBUG"
Josh Coalson9f429ba2001-01-19 22:39:39 +0000267else
Josh Coalson1e704552003-05-19 23:59:49 +0000268 OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O2 -DNDEBUG"
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000269 if test "x$GCC" = xyes; then
Josh Coalson1e704552003-05-19 23:59:49 +0000270 OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O3 -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__"
Josh Coalsonda0adb22001-06-18 23:07:19 +0000271 fi
Josh Coalson9f429ba2001-01-19 22:39:39 +0000272fi
Josh Coalson20809742003-01-10 04:39:20 +0000273CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS"
274CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS"
Josh Coalson9f429ba2001-01-19 22:39:39 +0000275
Josh Coalson3c8d2972005-01-30 18:44:04 +0000276#@@@@@@
277AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
278AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
279
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000280AC_CONFIG_FILES([ \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000281 Makefile \
282 src/Makefile \
283 src/libFLAC/Makefile \
284 src/libFLAC/ia32/Makefile \
Josh Coalson3aadd102004-07-27 01:13:16 +0000285 src/libFLAC/ppc/Makefile \
Josh Coalsonb9900222004-12-30 01:13:03 +0000286 src/libFLAC/ppc/as/Makefile \
287 src/libFLAC/ppc/gas/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000288 src/libFLAC/include/Makefile \
289 src/libFLAC/include/private/Makefile \
290 src/libFLAC/include/protected/Makefile \
291 src/libFLAC++/Makefile \
Josh Coalsonc49380d2002-08-07 17:38:08 +0000292 src/libOggFLAC/Makefile \
293 src/libOggFLAC/include/Makefile \
Josh Coalsonce3dd362003-12-17 05:26:34 +0000294 src/libOggFLAC/include/private/Makefile \
Josh Coalsonc49380d2002-08-07 17:38:08 +0000295 src/libOggFLAC/include/protected/Makefile \
296 src/libOggFLAC++/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000297 src/flac/Makefile \
298 src/metaflac/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000299 src/monkeys_audio_utilities/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000300 src/monkeys_audio_utilities/flac_mac/Makefile \
301 src/monkeys_audio_utilities/flac_ren/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000302 src/plugin_common/Makefile \
303 src/plugin_winamp2/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000304 src/plugin_winamp2/include/Makefile \
305 src/plugin_winamp2/include/winamp2/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000306 src/plugin_xmms/Makefile \
307 src/share/Makefile \
Josh Coalson3c043fd2002-10-25 04:57:05 +0000308 src/share/getopt/Makefile \
Josh Coalsonb8f8a072002-11-07 05:07:30 +0000309 src/share/grabbag/Makefile \
Josh Coalson9c650a52003-12-17 04:51:06 +0000310 src/share/replaygain_analysis/Makefile \
311 src/share/replaygain_synthesis/Makefile \
Josh Coalsone2999b72003-12-17 04:54:20 +0000312 src/share/replaygain_synthesis/include/Makefile \
313 src/share/replaygain_synthesis/include/private/Makefile \
Josh Coalson3c043fd2002-10-25 04:57:05 +0000314 src/share/utf8/Makefile \
Josh Coalson1dca1c22002-12-03 06:30:14 +0000315 src/test_grabbag/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000316 src/test_grabbag/cuesheet/Makefile \
Josh Coalson6b21f662006-09-13 01:42:27 +0000317 src/test_libs_common/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000318 src/test_libFLAC/Makefile \
319 src/test_libFLAC++/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000320 src/test_libOggFLAC/Makefile \
321 src/test_libOggFLAC++/Makefile \
Josh Coalson94b54992004-09-21 05:41:23 +0000322 src/test_seeking/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000323 src/test_streams/Makefile \
Josh Coalsonda0adb22001-06-18 23:07:19 +0000324 include/Makefile \
325 include/FLAC/Makefile \
Josh Coalson5a804ca2002-05-17 06:08:13 +0000326 include/FLAC++/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000327 include/OggFLAC/Makefile \
328 include/OggFLAC++/Makefile \
Josh Coalson5a804ca2002-05-17 06:08:13 +0000329 include/share/Makefile \
Josh Coalsonb8f8a072002-11-07 05:07:30 +0000330 include/share/grabbag/Makefile \
Josh Coalson6b21f662006-09-13 01:42:27 +0000331 include/test_libs_common/Makefile \
Josh Coalson4c8f73a2001-07-22 07:27:45 +0000332 doc/Makefile \
Josh Coalson130cbb52002-07-16 16:12:27 +0000333 doc/html/Makefile \
334 doc/html/images/Makefile \
335 doc/html/ru/Makefile \
Josh Coalson4c8f73a2001-07-22 07:27:45 +0000336 man/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000337 test/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000338 test/cuesheets/Makefile \
Josh Coalson6b21f662006-09-13 01:42:27 +0000339 test/flac-to-flac-metadata-test-files/Makefile \
340 test/metaflac-test-files/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000341 build/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000342 obj/Makefile \
343 obj/debug/Makefile \
Josh Coalsonb74fc982002-11-20 06:40:08 +0000344 obj/debug/bin/Makefile \
345 obj/debug/lib/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000346 obj/release/Makefile \
Josh Coalsonb74fc982002-11-20 06:40:08 +0000347 obj/release/bin/Makefile \
348 obj/release/lib/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000349 flac.pbproj/Makefile \
Josh Coalsonb1ec7962006-05-24 04:41:36 +0000350])
351AC_OUTPUT