blob: fddfb87b271b845f3bd753bf231d6a0e9662f5b7 [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 Coalsonc8dc7a42006-04-25 06:36:48 +000022#@@@@@@AM_INIT_AUTOMAKE(flac, 1.1.2)
23AM_INIT_AUTOMAKE(flac, CVS)
Josh Coalson9f429ba2001-01-19 22:39:39 +000024
Matt Zimmerman057b5322002-10-05 14:41:19 +000025# Don't automagically regenerate autoconf/automake generated files unless
26# explicitly requested. Eases autobuilding -mdz
27AM_MAINTAINER_MODE
28
Josh Coalson9f429ba2001-01-19 22:39:39 +000029# We need two libtools, one that builds both shared and static, and
30# one that builds only static. This is because the resulting libtool
31# does not allow us to choose which to build at runtime.
32AM_PROG_LIBTOOL
33sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
34chmod +x libtool-disable-static
35
Josh Coalson33f4ce52005-09-02 05:07:35 +000036AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
37
Josh Coalson985dd8d2004-07-29 05:25:36 +000038AM_PROG_AS
Josh Coalson57ba6f42002-06-07 05:27:37 +000039AC_PROG_CXX
Josh Coalson9f429ba2001-01-19 22:39:39 +000040AC_PROG_MAKE_SET
41
Josh Coalson6977bda2006-05-22 00:07:21 +000042AC_SYS_LARGEFILE
43AC_FUNC_FSEEKO
44
Josh Coalson27ae3482005-01-27 03:59:55 +000045AC_CHECK_TYPES(socklen_t, [], [])
46
Josh Coalson5a804ca2002-05-17 06:08:13 +000047dnl check for getopt in standard library
48dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
49AC_CHECK_FUNCS(getopt_long, [], [])
50
Josh Coalson5a804ca2002-05-17 06:08:13 +000051case "$host_cpu" in
Josh Coalson0e3576e2001-05-25 00:07:51 +000052 i*86) cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;
53 powerpc) cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;;
54 sparc) cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;;
Josh Coalsoncf030c82001-05-23 20:59:48 +000055esac
56AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue)
57AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue)
58AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue)
Josh Coalsonda0adb22001-06-18 23:07:19 +000059case "$host" in
Josh Coalsonc0852172003-04-27 08:32:41 +000060 i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
Josh Coalson91018c82005-12-02 05:31:29 +000061 *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
Josh Coalsonda0adb22001-06-18 23:07:19 +000062 *) OBJ_FORMAT=elf ;;
63esac
Josh Coalson27ae3482005-01-27 03:59:55 +000064AC_SUBST(OBJ_FORMAT)
65case "$host" in
66 *-pc-linux-gnu) sys_linux=true ; AC_DEFINE(FLAC__SYS_LINUX) ;;
67 *-*-darwin*) sys_darwin=true ; AC_DEFINE(FLAC__SYS_DARWIN) ;;
68esac
Josh Coalsonfd218cf2005-01-21 01:51:09 +000069AM_CONDITIONAL(FLaC__SYS_DARWIN, test x$sys_darwin = xtrue)
70AM_CONDITIONAL(FLaC__SYS_LINUX, test x$sys_linux = xtrue)
Josh Coalsoncf030c82001-05-23 20:59:48 +000071
Josh Coalson0e3576e2001-05-25 00:07:51 +000072if test x$cpu_ia32 = xtrue ; then
73AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
74fi
Josh Coalsoncf030c82001-05-23 20:59:48 +000075
76AC_ARG_ENABLE(asm-optimizations, [ --disable-asm-optimizations Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes)
77AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno)
Josh Coalson0e3576e2001-05-25 00:07:51 +000078if test x$asm_opt = xno ; then
79AC_DEFINE(FLAC__NO_ASM)
80fi
Josh Coalsoncf030c82001-05-23 20:59:48 +000081
Josh Coalson9f429ba2001-01-19 22:39:39 +000082AC_ARG_ENABLE(debug,
Josh Coalsonda0adb22001-06-18 23:07:19 +000083[ --enable-debug Turn on debugging],
84[case "${enableval}" in
85 yes) debug=true ;;
86 no) debug=false ;;
87 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
88esac],[debug=false])
Josh Coalson9f429ba2001-01-19 22:39:39 +000089AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
90
Josh Coalsonbb14ae82001-12-04 06:46:35 +000091AC_ARG_ENABLE(sse,
92[ --enable-sse Enable SSE support by asserting that the OS supports SSE instructions],
Josh Coalsond01b13a2001-07-18 00:27:06 +000093[case "${enableval}" in
94 yes) sse_os=true ;;
95 no) sse_os=false ;;
Josh Coalsonbb14ae82001-12-04 06:46:35 +000096 *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
Josh Coalsond01b13a2001-07-18 00:27:06 +000097esac],[sse_os=false])
98AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue)
99if test x$sse_os = xtrue ; then
100AC_DEFINE(FLAC__SSE_OS)
101fi
102
Josh Coalson28311cf2002-12-26 19:35:19 +0000103AC_ARG_ENABLE(3dnow,
104[ --disable-3dnow Disable 3DNOW! optimizations],
105[case "${enableval}" in
106 yes) use_3dnow=true ;;
107 no) use_3dnow=false ;;
108 *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
109esac],[use_3dnow=true])
110AM_CONDITIONAL(FLaC__USE_3DNOW, test x$use_3dnow = xtrue)
111if test x$use_3dnow = xtrue ; then
Josh Coalsonc69f8782001-11-13 23:08:22 +0000112AC_DEFINE(FLAC__USE_3DNOW)
113fi
114
Josh Coalson3aadd102004-07-27 01:13:16 +0000115AC_ARG_ENABLE(altivec,
116[ --disable-altivec Disable Altivec optimizations],
117[case "${enableval}" in
118 yes) use_altivec=true ;;
119 no) use_altivec=false ;;
120 *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
121esac],[use_altivec=true])
122AM_CONDITIONAL(FLaC__USE_ALTIVEC, test x$use_altivec = xtrue)
123if test x$use_altivec = xtrue ; then
124AC_DEFINE(FLAC__USE_ALTIVEC)
125fi
126
Josh Coalson3d730722003-01-14 06:59:50 +0000127AC_ARG_ENABLE(local-xmms-plugin,
128[ --enable-local-xmms-plugin Install XMMS plugin to ~/.xmms/Plugins instead of system location],
129[case "${enableval}" in
130 yes) install_xmms_plugin_locally=true ;;
131 no) install_xmms_plugin_locally=false ;;
132 *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
133esac],[install_xmms_plugin_locally=false])
134AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test x$install_xmms_plugin_locally = xtrue)
135
Josh Coalson9b145182002-08-30 05:39:36 +0000136AC_ARG_ENABLE(exhaustive-tests,
Josh Coalsonb7767932002-09-17 05:36:39 +0000137[ --enable-exhaustive-tests Enable exhaustive testing],
Josh Coalson9b145182002-08-30 05:39:36 +0000138[case "${enableval}" in
139 yes) exhaustive_tests=true ;;
140 no) exhaustive_tests=false ;;
141 *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
142esac],[exhaustive_tests=false])
143AM_CONDITIONAL(FLaC__EXHAUSTIVE_TESTS, test x$exhaustive_tests = xtrue)
Josh Coalson962bb3b2002-12-28 07:08:31 +0000144if test x$exhaustive_tests = xtrue ; then
145AC_DEFINE(FLAC__EXHAUSTIVE_TESTS)
146fi
Josh Coalsond1923622002-12-05 06:36:12 +0000147
148AC_ARG_ENABLE(valgrind-testing,
149[ --enable-valgrind-testing Run all tests inside Valgrind],
150[case "${enableval}" in
151 yes) valgrind_testing=true ;;
152 no) valgrind_testing=false ;;
153 *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
154esac],[valgrind_testing=false])
155AM_CONDITIONAL(FLaC__VALGRIND_TESTING, test x$valgrind_testing = xtrue)
Josh Coalson962bb3b2002-12-28 07:08:31 +0000156if test x$valgrind_testing = xtrue ; then
157AC_DEFINE(FLAC__VALGRIND_TESTING)
158fi
Josh Coalson9b145182002-08-30 05:39:36 +0000159
Josh Coalsone2fece22002-09-09 21:54:28 +0000160dnl check for ogg library
Josh Coalson3f6c9982002-09-05 05:40:58 +0000161XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
Josh Coalsonc8a7d352001-11-11 03:59:46 +0000162AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
163if test x$have_ogg = xyes ; then
164AC_DEFINE(FLAC__HAS_OGG)
165fi
Josh Coalsonf7fc5c82001-10-31 18:31:36 +0000166
Josh Coalson9f429ba2001-01-19 22:39:39 +0000167AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
Josh Coalsoncf030c82001-05-23 20:59:48 +0000168AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
169
Josh Coalson130cbb52002-07-16 16:12:27 +0000170dnl check for i18n(internationalization); these are from libiconv/gettext
Josh Coalson412fa3b2002-07-11 06:15:30 +0000171AM_ICONV
172AM_LANGINFO_CODESET
173
Josh Coalsonb5134f12006-05-19 00:31:12 +0000174AC_ARG_ENABLE(doxygen_docs, AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]))
Josh Coalson6977bda2006-05-22 00:07:21 +0000175if test "x$enable_doxygen_docs" != "xno" ; then
Josh Coalsonb5134f12006-05-19 00:31:12 +0000176 AC_CHECK_PROGS(DOXYGEN, doxygen)
177fi
Josh Coalson20809742003-01-10 04:39:20 +0000178AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
179if test -n "$DOXYGEN" ; then
180AC_DEFINE(FLAC__HAS_DOXYGEN)
181fi
182
Josh Coalson90e57162004-07-30 00:46:39 +0000183AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
184AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
185if test -n "$DOCBOOK_TO_MAN" ; then
186AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
187fi
188
Josh Coalsonb9900222004-12-30 01:13:03 +0000189# only matters for x86
Josh Coalsoncf030c82001-05-23 20:59:48 +0000190AC_CHECK_PROGS(NASM, nasm)
191AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
Josh Coalson0e3576e2001-05-25 00:07:51 +0000192if test -n "$NASM" ; then
193AC_DEFINE(FLAC__HAS_NASM)
194fi
Josh Coalson9f429ba2001-01-19 22:39:39 +0000195
Josh Coalsonb9900222004-12-30 01:13:03 +0000196# only matters for PowerPC
Josh Coalsona02b73f2005-03-02 05:21:06 +0000197AC_CHECK_PROGS(AS, as, as)
198AC_CHECK_PROGS(GAS, gas, gas)
199
200test "$AS" = "as" && as --version | grep GNU >/dev/null && AS=gas
201
202AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as")
203AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas")
204if test "$AS" = "as" ; then
Josh Coalsonb9900222004-12-30 01:13:03 +0000205AC_DEFINE(FLAC__HAS_AS)
206fi
Josh Coalsona02b73f2005-03-02 05:21:06 +0000207if test "$AS" = "gas" ; then
Josh Coalsonb9900222004-12-30 01:13:03 +0000208# funniest. macro. ever.
209AC_DEFINE(FLAC__HAS_GAS)
210fi
211
Josh Coalson57ba6f42002-06-07 05:27:37 +0000212OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
Josh Coalson9f429ba2001-01-19 22:39:39 +0000213if test x$debug = xtrue; then
Josh Coalson20809742003-01-10 04:39:20 +0000214 OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -O0 -DDEBUG"
Josh Coalson9f429ba2001-01-19 22:39:39 +0000215else
Josh Coalson1e704552003-05-19 23:59:49 +0000216 OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O2 -DNDEBUG"
Josh Coalsonda0adb22001-06-18 23:07:19 +0000217 if test x$GCC = xyes; then
Josh Coalson1e704552003-05-19 23:59:49 +0000218 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 +0000219 fi
Josh Coalson9f429ba2001-01-19 22:39:39 +0000220fi
Josh Coalson20809742003-01-10 04:39:20 +0000221CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS"
222CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS"
Josh Coalson9f429ba2001-01-19 22:39:39 +0000223
Josh Coalson3c8d2972005-01-30 18:44:04 +0000224#@@@@@@
225AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
226AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
227
Matt Zimmermane5259172002-10-10 16:51:06 +0000228AM_CONFIG_HEADER(config.h)
Josh Coalsonf0a8c4f2003-01-15 03:17:51 +0000229AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
Matt Zimmermane5259172002-10-10 16:51:06 +0000230AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
231AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
232AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
Josh Coalsonfd218cf2005-01-21 01:51:09 +0000233AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
234AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
Josh Coalson32386732003-01-02 07:29:58 +0000235AH_TEMPLATE(FLAC__EXHAUSTIVE_TESTS, [define to run even more tests])
236AH_TEMPLATE(FLAC__VALGRIND_TESTING, [define to enable use of Valgrind in testers])
Josh Coalson20809742003-01-10 04:39:20 +0000237AH_TEMPLATE(FLAC__HAS_DOXYGEN, [define if you have Doxygen])
Josh Coalson90e57162004-07-30 00:46:39 +0000238AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
Josh Coalsonb9900222004-12-30 01:13:03 +0000239AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
240AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
241AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
Matt Zimmermane5259172002-10-10 16:51:06 +0000242AH_TEMPLATE(FLAC__HAS_OGG, [define if you have the ogg library])
243AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
Josh Coalson20809742003-01-10 04:39:20 +0000244AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
Matt Zimmermane5259172002-10-10 16:51:06 +0000245AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
Josh Coalson3aadd102004-07-27 01:13:16 +0000246AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
Matt Zimmermane5259172002-10-10 16:51:06 +0000247
uid38180b4bc14b2002-09-09 20:53:08 +0000248AC_OUTPUT( \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000249 Makefile \
250 src/Makefile \
251 src/libFLAC/Makefile \
252 src/libFLAC/ia32/Makefile \
Josh Coalson3aadd102004-07-27 01:13:16 +0000253 src/libFLAC/ppc/Makefile \
Josh Coalsonb9900222004-12-30 01:13:03 +0000254 src/libFLAC/ppc/as/Makefile \
255 src/libFLAC/ppc/gas/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000256 src/libFLAC/include/Makefile \
257 src/libFLAC/include/private/Makefile \
258 src/libFLAC/include/protected/Makefile \
259 src/libFLAC++/Makefile \
Josh Coalsonc49380d2002-08-07 17:38:08 +0000260 src/libOggFLAC/Makefile \
261 src/libOggFLAC/include/Makefile \
Josh Coalsonce3dd362003-12-17 05:26:34 +0000262 src/libOggFLAC/include/private/Makefile \
Josh Coalsonc49380d2002-08-07 17:38:08 +0000263 src/libOggFLAC/include/protected/Makefile \
264 src/libOggFLAC++/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000265 src/flac/Makefile \
266 src/metaflac/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000267 src/monkeys_audio_utilities/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000268 src/monkeys_audio_utilities/flac_mac/Makefile \
269 src/monkeys_audio_utilities/flac_ren/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000270 src/plugin_common/Makefile \
271 src/plugin_winamp2/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000272 src/plugin_winamp2/include/Makefile \
273 src/plugin_winamp2/include/winamp2/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000274 src/plugin_xmms/Makefile \
275 src/share/Makefile \
Josh Coalson3c043fd2002-10-25 04:57:05 +0000276 src/share/getopt/Makefile \
Josh Coalsonb8f8a072002-11-07 05:07:30 +0000277 src/share/grabbag/Makefile \
Josh Coalson9c650a52003-12-17 04:51:06 +0000278 src/share/replaygain_analysis/Makefile \
279 src/share/replaygain_synthesis/Makefile \
Josh Coalsone2999b72003-12-17 04:54:20 +0000280 src/share/replaygain_synthesis/include/Makefile \
281 src/share/replaygain_synthesis/include/private/Makefile \
Josh Coalson3c043fd2002-10-25 04:57:05 +0000282 src/share/utf8/Makefile \
Josh Coalson1dca1c22002-12-03 06:30:14 +0000283 src/test_grabbag/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000284 src/test_grabbag/cuesheet/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000285 src/test_libFLAC/Makefile \
286 src/test_libFLAC++/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000287 src/test_libOggFLAC/Makefile \
288 src/test_libOggFLAC++/Makefile \
Josh Coalson94b54992004-09-21 05:41:23 +0000289 src/test_seeking/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000290 src/test_streams/Makefile \
Josh Coalsonda0adb22001-06-18 23:07:19 +0000291 include/Makefile \
292 include/FLAC/Makefile \
Josh Coalson5a804ca2002-05-17 06:08:13 +0000293 include/FLAC++/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000294 include/OggFLAC/Makefile \
295 include/OggFLAC++/Makefile \
Josh Coalson5a804ca2002-05-17 06:08:13 +0000296 include/share/Makefile \
Josh Coalsonb8f8a072002-11-07 05:07:30 +0000297 include/share/grabbag/Makefile \
Josh Coalson4c8f73a2001-07-22 07:27:45 +0000298 doc/Makefile \
Josh Coalson130cbb52002-07-16 16:12:27 +0000299 doc/html/Makefile \
300 doc/html/images/Makefile \
301 doc/html/ru/Makefile \
Josh Coalson4c8f73a2001-07-22 07:27:45 +0000302 man/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000303 test/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000304 test/cuesheets/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000305 build/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000306 obj/Makefile \
307 obj/debug/Makefile \
Josh Coalsonb74fc982002-11-20 06:40:08 +0000308 obj/debug/bin/Makefile \
309 obj/debug/lib/Makefile \
Josh Coalson20809742003-01-10 04:39:20 +0000310 obj/release/Makefile \
Josh Coalsonb74fc982002-11-20 06:40:08 +0000311 obj/release/bin/Makefile \
312 obj/release/lib/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000313 flac.pbproj/Makefile \
Josh Coalsonda0adb22001-06-18 23:07:19 +0000314)