blob: 8eadd445e9a7014a82ea4bf1fca13d285ef3feea [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001# FLAC - Free Lossless Audio Codec
Josh Coalson1152f9f2002-01-26 18:05:12 +00002# Copyright (C) 2001,2002 Josh Coalson
Josh Coalson6b05bc52001-06-08 00:13:21 +00003#
4# This program is part of FLAC; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License
6# as published by the Free Software Foundation; either version 2
7# of the License, or (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
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 Coalson6b2efd02002-09-09 22:16:55 +000022AM_INIT_AUTOMAKE(flac, 1.0.4_beta)
Josh Coalson9f429ba2001-01-19 22:39:39 +000023
Josh Coalsone2fece22002-09-09 21:54:28 +000024# Function to configure paths for id3lib; search for 'meat' to get to the end.
25# adapted from ogg.m4
26# This is here until id3lib comes with an equivalent.
27# It is inline with configure.in instead of a separate file as a courtesy to users unaware of the -I flag to aclocal
28dnl LOCAL__PATH_ID3LIB([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
29dnl Test for libid3, and define ID3LIB_CFLAGS and ID3LIB_LIBS
30dnl
31AC_DEFUN(LOCAL__PATH_ID3LIB,
32[dnl
33dnl Get the cflags and libraries
34dnl
35AC_ARG_WITH(id3lib,[ --with-id3lib=PFX Prefix where libid3 is installed (optional)], id3lib_prefix="$withval", id3lib_prefix="")
36AC_ARG_WITH(id3lib-libraries,[ --with-id3lib-libraries=DIR Directory where libid3 library is installed (optional)], id3lib_libraries="$withval", id3lib_libraries="")
37AC_ARG_WITH(id3lib-includes,[ --with-id3lib-includes=DIR Directory where libid3 header files are installed (optional)], id3lib_includes="$withval", id3lib_includes="")
38AC_ARG_ENABLE(id3libtest, [ --disable-id3libtest Do not try to compile and run a test id3lib program],, enable_id3libtest=yes)
39
40 if test "x$id3lib_libraries" != "x" ; then
41 ID3LIB_LIBS="-L$id3lib_libraries"
42 elif test "x$id3lib_prefix" != "x" ; then
43 ID3LIB_LIBS="-L$id3lib_prefix/lib"
44 elif test "x$prefix" != "xNONE" ; then
45 ID3LIB_LIBS="-L$prefix/lib"
46 fi
47
48 ID3LIB_LIBS="$ID3LIB_LIBS -lid3"
49
50 if test "x$id3lib_includes" != "x" ; then
51 ID3LIB_CFLAGS="-I$id3lib_includes"
52 elif test "x$id3lib_prefix" != "x" ; then
53 ID3LIB_CFLAGS="-I$id3lib_prefix/include"
54 elif test "$prefix" != "xNONE"; then
55 ID3LIB_CFLAGS="-I$prefix/include"
56 fi
57
58 AC_MSG_CHECKING(for id3lib)
59
60
61 if test "x$enable_id3libtest" = "xyes" ; then
62 id3lib_found=""
63 else
64 id3lib_found="yes"
65 fi
66 dnl There is some confusion over what libraries libid3 needs
67 dnl so we must be pessimistic and try all permutations:
68 dnl "-lid3" "-lid3 -lstdc++" "-lid3 -lz" "-lid3 -lz -lstdc++"
69 for xtra_stdcpp in "" " -lstdc++" ; do
70 for xtra_z in "" " -lz" ; do
71 if test "x$id3lib_found" = "x" ; then
72 ac_save_CFLAGS="$CFLAGS"
73 ac_save_LIBS="$LIBS"
74 CFLAGS="$CFLAGS $ID3LIB_CFLAGS"
75 LIBS="$LIBS $ID3LIB_LIBS$xtra_stdcpp$xtra_z"
76 rm -f conf.id3libtest
77 AC_TRY_RUN([
78#include <stdio.h>
79#include <stdlib.h>
80#include <string.h>
81#include <id3.h>
82int main () { system("touch conf.id3libtest"); return 0; }
83], id3lib_found=yes,,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
84 CFLAGS="$ac_save_CFLAGS"
85 LIBS="$ac_save_LIBS"
86 fi
87 if test "x$id3lib_found" = "xyes" ; then
88 ID3LIB_LIBS="$ID3LIB_LIBS$xtra_stdcpp$xtra_z"
89 fi
90 done
91 done
92
93 if test "x$id3lib_found" = "xyes" ; then
94 AC_MSG_RESULT(yes)
95 ifelse([$1], , :, [$1])
96 else
97 AC_MSG_RESULT(no)
98 if test -f conf.id3libtest ; then
99 :
100 else
101 echo "*** Could not run id3lib test program, checking why..."
102 CFLAGS="$CFLAGS $ID3LIB_CFLAGS"
103 LIBS="$LIBS $ID3LIB_LIBS"
104 AC_TRY_LINK([
105#include <stdio.h>
106#include <id3.h>
107], [ return 0; ],
108 [ echo "*** The test program compiled, but did not run. This usually means"
109 echo "*** that the run-time linker is not finding id3lib or finding the wrong"
110 echo "*** version of id3lib. If it is not finding id3lib, you'll need to set your"
111 echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
112 echo "*** to the installed location Also, make sure you have run ldconfig if that"
113 echo "*** is required on your system"
114 echo "***"
115 echo "*** If you have an old version installed, it is best to remove it, although"
116 echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
117 [ echo "*** The test program failed to compile or link. See the file config.log for the"
118 echo "*** exact error that occured. This usually means id3lib was incorrectly installed"
119 echo "*** or that you have moved id3lib since it was installed." ])
120 CFLAGS="$ac_save_CFLAGS"
121 LIBS="$ac_save_LIBS"
122 fi
123 ID3LIB_CFLAGS=""
124 ID3LIB_LIBS=""
125 ifelse([$2], , :, [$2])
126 fi
127 AC_SUBST(ID3LIB_CFLAGS)
128 AC_SUBST(ID3LIB_LIBS)
129 rm -f conf.id3libtest
130])
131
132
133dnl Now the meat of configure.in:
134
Josh Coalson9f429ba2001-01-19 22:39:39 +0000135# We need two libtools, one that builds both shared and static, and
136# one that builds only static. This is because the resulting libtool
137# does not allow us to choose which to build at runtime.
138AM_PROG_LIBTOOL
139sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
140chmod +x libtool-disable-static
141
Josh Coalson57ba6f42002-06-07 05:27:37 +0000142AC_PROG_CXX
Josh Coalson9f429ba2001-01-19 22:39:39 +0000143AC_PROG_MAKE_SET
144
Josh Coalson5a804ca2002-05-17 06:08:13 +0000145dnl check for getopt in standard library
146dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
147AC_CHECK_FUNCS(getopt_long, [], [])
148
Josh Coalsondef8eb82001-05-23 22:08:27 +0000149AC_CANONICAL_HOST
Josh Coalson5a804ca2002-05-17 06:08:13 +0000150case "$host_cpu" in
Josh Coalson0e3576e2001-05-25 00:07:51 +0000151 i*86) cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;
152 powerpc) cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;;
153 sparc) cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;;
Josh Coalsoncf030c82001-05-23 20:59:48 +0000154esac
155AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue)
156AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue)
157AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue)
Josh Coalsonda0adb22001-06-18 23:07:19 +0000158case "$host" in
Josh Coalson4ca5ec92001-08-13 21:58:49 +0000159 i[[3-6]]86-*-openbsd*) OBJ_FORMAT=aoutb ;;
Josh Coalsonda0adb22001-06-18 23:07:19 +0000160 *) OBJ_FORMAT=elf ;;
161esac
162AC_SUBST(OBJ_FORMAT)
Josh Coalsoncf030c82001-05-23 20:59:48 +0000163
Josh Coalson0e3576e2001-05-25 00:07:51 +0000164if test x$cpu_ia32 = xtrue ; then
165AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
166fi
Josh Coalsoncf030c82001-05-23 20:59:48 +0000167
168AC_ARG_ENABLE(asm-optimizations, [ --disable-asm-optimizations Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes)
169AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno)
Josh Coalson0e3576e2001-05-25 00:07:51 +0000170if test x$asm_opt = xno ; then
171AC_DEFINE(FLAC__NO_ASM)
172fi
Josh Coalsoncf030c82001-05-23 20:59:48 +0000173
Josh Coalson9f429ba2001-01-19 22:39:39 +0000174AC_ARG_ENABLE(debug,
Josh Coalsonda0adb22001-06-18 23:07:19 +0000175[ --enable-debug Turn on debugging],
176[case "${enableval}" in
177 yes) debug=true ;;
178 no) debug=false ;;
179 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
180esac],[debug=false])
Josh Coalson9f429ba2001-01-19 22:39:39 +0000181AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
182
Josh Coalsonbb14ae82001-12-04 06:46:35 +0000183AC_ARG_ENABLE(sse,
184[ --enable-sse Enable SSE support by asserting that the OS supports SSE instructions],
Josh Coalsond01b13a2001-07-18 00:27:06 +0000185[case "${enableval}" in
186 yes) sse_os=true ;;
187 no) sse_os=false ;;
Josh Coalsonbb14ae82001-12-04 06:46:35 +0000188 *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
Josh Coalsond01b13a2001-07-18 00:27:06 +0000189esac],[sse_os=false])
190AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue)
191if test x$sse_os = xtrue ; then
192AC_DEFINE(FLAC__SSE_OS)
193fi
194
Josh Coalsonbb14ae82001-12-04 06:46:35 +0000195AC_ARG_ENABLE(3dnow,
196[ --enable-3dnow Enable 3DNOW! support],
Josh Coalsonc69f8782001-11-13 23:08:22 +0000197[case "${enableval}" in
198 yes) use_3dnow=true ;;
199 no) use_3dnow=false ;;
Josh Coalsonbb14ae82001-12-04 06:46:35 +0000200 *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
Josh Coalsonc69f8782001-11-13 23:08:22 +0000201esac],[use_3dnow=false])
202AM_CONDITIONAL(FLaC__USE_3DNOW, test x$use_3dnow = xtrue)
203if test x$use_3dnow = xtrue ; then
204AC_DEFINE(FLAC__USE_3DNOW)
205fi
206
Josh Coalson9b145182002-08-30 05:39:36 +0000207AC_ARG_ENABLE(exhaustive-tests,
Josh Coalsonb7767932002-09-17 05:36:39 +0000208[ --enable-exhaustive-tests Enable exhaustive testing],
Josh Coalson9b145182002-08-30 05:39:36 +0000209[case "${enableval}" in
210 yes) exhaustive_tests=true ;;
211 no) exhaustive_tests=false ;;
212 *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
213esac],[exhaustive_tests=false])
214AM_CONDITIONAL(FLaC__EXHAUSTIVE_TESTS, test x$exhaustive_tests = xtrue)
215if test x$exhaustive_tests = xtrue ; then
216AC_DEFINE(FLAC__EXHAUSTIVE_TESTS)
217fi
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 Coalsonc8a7d352001-11-11 03:59:46 +0000221AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
222if test x$have_ogg = xyes ; then
223AC_DEFINE(FLAC__HAS_OGG)
224fi
Josh Coalsonf7fc5c82001-10-31 18:31:36 +0000225
Josh Coalson9f429ba2001-01-19 22:39:39 +0000226AM_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 +0000227AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
228
Josh Coalson5a804ca2002-05-17 06:08:13 +0000229SHARE_LIBS='$(top_builddir)/src/share/libutf8.a $(top_builddir)/src/share/libgetopt.a'
230
Josh Coalson130cbb52002-07-16 16:12:27 +0000231dnl check for i18n(internationalization); these are from libiconv/gettext
Josh Coalson412fa3b2002-07-11 06:15:30 +0000232AM_ICONV
233AM_LANGINFO_CODESET
234
Josh Coalsone2fece22002-09-09 21:54:28 +0000235dnl check for id3lib library
236dnl LOCAL__PATH_ID3LIB is defined by us, and will be until such time as id3lib supplies one
237LOCAL__PATH_ID3LIB(have_id3lib=yes, AC_MSG_WARN([*** id3lib not found - id3v2 support will not be built]))
Josh Coalson412fa3b2002-07-11 06:15:30 +0000238AM_CONDITIONAL(FLaC__HAS_ID3LIB, [test x$have_id3lib = xyes])
239if test x$have_id3lib = xyes ; then
240AC_DEFINE(FLAC__HAS_ID3LIB)
Josh Coalson412fa3b2002-07-11 06:15:30 +0000241
Josh Coalsone2fece22002-09-09 21:54:28 +0000242dnl expected id3lib version for cross compiling
Josh Coalson412fa3b2002-07-11 06:15:30 +0000243ID3LIB_MAJOR=3
244ID3LIB_MINOR=8
245ID3LIB_PATCH=0
246
Josh Coalsone2fece22002-09-09 21:54:28 +0000247CFLAGS_save_blah_blah_blah=$CFLAGS
248CFLAGS="$ID3LIB_CFLAGS $CFLAGS"
249LIBS_save_blah_blah_blah=$LIBS
250LIBS="$ID3LIB_LIBS $LIBS"
Josh Coalson412fa3b2002-07-11 06:15:30 +0000251AC_MSG_CHECKING(for id3lib version)
252 AC_TRY_RUN([
253#include <id3.h>
254#include <stdio.h>
Josh Coalson3d8a96e2002-08-27 05:51:19 +0000255int
Josh Coalson412fa3b2002-07-11 06:15:30 +0000256main ()
257{
Josh Coalson3d8a96e2002-08-27 05:51:19 +0000258 FILE *output;
259 output=fopen("conftest.id3","w");
260 fprintf(output,"ID3LIB_MAJOR=%d\nID3LIB_MINOR=%d\nID3LIB_PATCH=%d\n",ID3LIB_MAJOR_VERSION,ID3LIB_MINOR_VERSION,ID3LIB_PATCH_VERSION);
261 fclose(output);
262 exit(0);
Josh Coalson412fa3b2002-07-11 06:15:30 +0000263}
264], . conftest.id3; echo "${ID3LIB_MAJOR}.${ID3LIB_MINOR}.${ID3LIB_PATCH}", AC_MSG_WARN(could not determine id3lib version),[echo $ac_n "cross compiling; assuming ${ID3LIB_MAJOR}.${ID3LIB_MINOR}.${ID3LIB_PATCH} $ac_c"])
265AC_DEFINE_UNQUOTED(ID3LIB_MAJOR, $ID3LIB_MAJOR)
266AC_DEFINE_UNQUOTED(ID3LIB_MINOR, $ID3LIB_MINOR)
267AC_DEFINE_UNQUOTED(ID3LIB_PATCH, $ID3LIB_PATCH)
Josh Coalsone2fece22002-09-09 21:54:28 +0000268CFLAGS=$CFLAGS_save_blah_blah_blah
Josh Coalson412fa3b2002-07-11 06:15:30 +0000269LIBS=$LIBS_save_blah_blah_blah
Josh Coalsone2fece22002-09-09 21:54:28 +0000270fi
Josh Coalson412fa3b2002-07-11 06:15:30 +0000271
Josh Coalsoncf030c82001-05-23 20:59:48 +0000272AC_CHECK_PROGS(NASM, nasm)
273AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
Josh Coalson0e3576e2001-05-25 00:07:51 +0000274if test -n "$NASM" ; then
275AC_DEFINE(FLAC__HAS_NASM)
276fi
Josh Coalson9f429ba2001-01-19 22:39:39 +0000277
Josh Coalson6ca4b1b2001-06-29 02:54:59 +0000278dnl Check for type sizes
279
280AC_CHECK_SIZEOF(short)
281AC_CHECK_SIZEOF(int)
282AC_CHECK_SIZEOF(long)
283AC_CHECK_SIZEOF(long long)
284
285case 2 in
286 $ac_cv_sizeof_short) FLaC__SIZE16="short" ; FLaC__USIZE16="unsigned short";;
287 $ac_cv_sizeof_int) FLaC__SIZE16="int" ; FLaC__USIZE16="unsigned int";;
288esac
289
290case 4 in
291 $ac_cv_sizeof_short) FLaC__SIZE32="short" ; FLaC__USIZE32="unsigned short";;
292 $ac_cv_sizeof_int) FLaC__SIZE32="int" ; FLaC__USIZE32="unsigned int";;
293 $ac_cv_sizeof_long) FLaC__SIZE32="long" ; FLaC__USIZE32="unsigned long";;
294esac
295
296case 8 in
297 $ac_cv_sizeof_int) FLaC__SIZE64="int" ; FLaC__USIZE64="unsigned int";;
298 $ac_cv_sizeof_long) FLaC__SIZE64="long" ; FLaC__USIZE64="unsigned long";;
299 $ac_cv_sizeof_long_long) FLaC__SIZE64="long long" ; FLaC__USIZE64="unsigned long long";;
300esac
301
302if test -z "$FLaC__SIZE16"; then
303 AC_MSG_ERROR(No 16 bit type found on this platform!)
304fi
305if test -z "$FLaC__USIZE16"; then
306 AC_MSG_ERROR(No unsigned 16 bit type found on this platform!)
307fi
308if test -z "$FLaC__SIZE32"; then
309 AC_MSG_ERROR(No 32 bit type found on this platform!)
310fi
311if test -z "$FLaC__USIZE32"; then
312 AC_MSG_ERROR(No unsigned 32 bit type found on this platform!)
313fi
314if test -z "$FLaC__SIZE64"; then
315 AC_MSG_WARN(No 64 bit type found on this platform!)
316fi
317if test -z "$FLaC__USIZE64"; then
318 AC_MSG_ERROR(No unsigned 64 bit type found on this platform!)
319fi
320
321AC_SUBST(FLaC__SIZE16)
322AC_SUBST(FLaC__USIZE16)
323AC_SUBST(FLaC__SIZE32)
324AC_SUBST(FLaC__USIZE32)
325AC_SUBST(FLaC__SIZE64)
326AC_SUBST(FLaC__USIZE64)
327
Josh Coalson5a804ca2002-05-17 06:08:13 +0000328AC_SUBST(SHARE_LIBS)
329
Josh Coalson57ba6f42002-06-07 05:27:37 +0000330OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
Josh Coalson9f429ba2001-01-19 22:39:39 +0000331if test x$debug = xtrue; then
Josh Coalson57ba6f42002-06-07 05:27:37 +0000332 OUR_CFLAGS_TAIL="-g -O0 -DDEBUG"
Josh Coalson9f429ba2001-01-19 22:39:39 +0000333else
Josh Coalson57ba6f42002-06-07 05:27:37 +0000334 OUR_CFLAGS_TAIL="-O3 -DNDEBUG"
Josh Coalsonda0adb22001-06-18 23:07:19 +0000335 if test x$GCC = xyes; then
Josh Coalson57ba6f42002-06-07 05:27:37 +0000336 OUR_CFLAGS_TAIL="$OUR_CFLAGS_TAIL -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__"
Josh Coalsonda0adb22001-06-18 23:07:19 +0000337 fi
Josh Coalson9f429ba2001-01-19 22:39:39 +0000338fi
Josh Coalson57ba6f42002-06-07 05:27:37 +0000339CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS $OUR_CFLAGS_TAIL"
340CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS $OUR_CFLAGS_TAIL"
Josh Coalson9f429ba2001-01-19 22:39:39 +0000341
uid38180b4bc14b2002-09-09 20:53:08 +0000342AC_OUTPUT( \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000343 Makefile \
344 src/Makefile \
345 src/libFLAC/Makefile \
346 src/libFLAC/ia32/Makefile \
347 src/libFLAC/include/Makefile \
348 src/libFLAC/include/private/Makefile \
349 src/libFLAC/include/protected/Makefile \
350 src/libFLAC++/Makefile \
Josh Coalsonc49380d2002-08-07 17:38:08 +0000351 src/libOggFLAC/Makefile \
352 src/libOggFLAC/include/Makefile \
353 src/libOggFLAC/include/protected/Makefile \
354 src/libOggFLAC++/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000355 src/flac/Makefile \
356 src/metaflac/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000357 src/monkeys_audio_utilities/flac_mac/Makefile \
358 src/monkeys_audio_utilities/flac_ren/Makefile \
359 src/monkeys_audio_utilities/Makefile \
360 src/plugin_common/Makefile \
361 src/plugin_winamp2/Makefile \
362 src/plugin_winamp3/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000363 src/plugin_xmms/Makefile \
364 src/share/Makefile \
365 src/test_libFLAC/Makefile \
366 src/test_libFLAC++/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000367 src/test_libOggFLAC/Makefile \
368 src/test_libOggFLAC++/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000369 src/test_streams/Makefile \
Josh Coalsonda0adb22001-06-18 23:07:19 +0000370 include/Makefile \
371 include/FLAC/Makefile \
Josh Coalson6ca4b1b2001-06-29 02:54:59 +0000372 include/FLAC/ordinals.h \
Josh Coalson5a804ca2002-05-17 06:08:13 +0000373 include/FLAC++/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000374 include/OggFLAC/Makefile \
375 include/OggFLAC++/Makefile \
Josh Coalson5a804ca2002-05-17 06:08:13 +0000376 include/share/Makefile \
Josh Coalson4c8f73a2001-07-22 07:27:45 +0000377 doc/Makefile \
Josh Coalson130cbb52002-07-16 16:12:27 +0000378 doc/html/Makefile \
379 doc/html/images/Makefile \
380 doc/html/ru/Makefile \
Josh Coalson4c8f73a2001-07-22 07:27:45 +0000381 man/Makefile \
Josh Coalson1d96b7e2002-07-24 06:13:33 +0000382 test/Makefile \
Josh Coalson1f99eac2002-08-23 06:45:23 +0000383 build/Makefile \
384 obj/bin/Makefile \
385 obj/lib/Makefile \
386 obj/Makefile \
387 flac.pbproj/Makefile \
Josh Coalsonda0adb22001-06-18 23:07:19 +0000388)