Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 1 | # FLAC - Free Lossless Audio Codec |
Josh Coalson | 9564390 | 2004-01-17 04:14:43 +0000 | [diff] [blame] | 2 | # Copyright (C) 2001,2002,2003,2004 Josh Coalson |
Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 3 | # |
Josh Coalson | e8a7601 | 2003-02-07 00:14:32 +0000 | [diff] [blame] | 4 | # 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 Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 12 | # |
Josh Coalson | e8a7601 | 2003-02-07 00:14:32 +0000 | [diff] [blame] | 13 | # 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 Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 17 | |
Josh Coalson | 0e3576e | 2001-05-25 00:07:51 +0000 | [diff] [blame] | 18 | # NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__ |
Josh Coalson | cf030c8 | 2001-05-23 20:59:48 +0000 | [diff] [blame] | 19 | # instead of FLAC__ since autoconf triggers off 'AC_' in strings |
| 20 | |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 21 | AC_INIT(src/flac/main.c) |
Josh Coalson | c28ec32 | 2004-09-10 00:20:04 +0000 | [diff] [blame] | 22 | AM_INIT_AUTOMAKE(flac, 1.1.1) |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 23 | |
Josh Coalson | 3ca49da | 2004-09-28 00:52:46 +0000 | [diff] [blame] | 24 | dnl In order to have access to any available wcsdup() and wcscasecmp() |
| 25 | AC_GNU_SOURCE |
| 26 | |
Matt Zimmerman | 057b532 | 2002-10-05 14:41:19 +0000 | [diff] [blame] | 27 | # Don't automagically regenerate autoconf/automake generated files unless |
| 28 | # explicitly requested. Eases autobuilding -mdz |
| 29 | AM_MAINTAINER_MODE |
| 30 | |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 31 | # We need two libtools, one that builds both shared and static, and |
| 32 | # one that builds only static. This is because the resulting libtool |
| 33 | # does not allow us to choose which to build at runtime. |
| 34 | AM_PROG_LIBTOOL |
| 35 | sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static |
| 36 | chmod +x libtool-disable-static |
| 37 | |
Josh Coalson | 985dd8d | 2004-07-29 05:25:36 +0000 | [diff] [blame] | 38 | AM_PROG_AS |
Josh Coalson | 57ba6f4 | 2002-06-07 05:27:37 +0000 | [diff] [blame] | 39 | AC_PROG_CXX |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 40 | AC_PROG_MAKE_SET |
| 41 | |
Josh Coalson | 5a804ca | 2002-05-17 06:08:13 +0000 | [diff] [blame] | 42 | dnl check for getopt in standard library |
| 43 | dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] ) |
| 44 | AC_CHECK_FUNCS(getopt_long, [], []) |
| 45 | |
Josh Coalson | 9745f25 | 2004-09-24 13:57:40 +0000 | [diff] [blame] | 46 | dnl Check for uncommon wide char functions |
| 47 | AC_CHECK_FUNCS(wcsdup, wcscasecmp, [], []) |
| 48 | |
Josh Coalson | def8eb8 | 2001-05-23 22:08:27 +0000 | [diff] [blame] | 49 | AC_CANONICAL_HOST |
Josh Coalson | 5a804ca | 2002-05-17 06:08:13 +0000 | [diff] [blame] | 50 | case "$host_cpu" in |
Josh Coalson | 0e3576e | 2001-05-25 00:07:51 +0000 | [diff] [blame] | 51 | i*86) cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;; |
| 52 | powerpc) cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;; |
| 53 | sparc) cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;; |
Josh Coalson | cf030c8 | 2001-05-23 20:59:48 +0000 | [diff] [blame] | 54 | esac |
| 55 | AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue) |
| 56 | AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue) |
| 57 | AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue) |
Josh Coalson | da0adb2 | 2001-06-18 23:07:19 +0000 | [diff] [blame] | 58 | case "$host" in |
Josh Coalson | c085217 | 2003-04-27 08:32:41 +0000 | [diff] [blame] | 59 | i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;; |
Josh Coalson | da0adb2 | 2001-06-18 23:07:19 +0000 | [diff] [blame] | 60 | *) OBJ_FORMAT=elf ;; |
| 61 | esac |
| 62 | AC_SUBST(OBJ_FORMAT) |
Josh Coalson | cf030c8 | 2001-05-23 20:59:48 +0000 | [diff] [blame] | 63 | |
Josh Coalson | 0e3576e | 2001-05-25 00:07:51 +0000 | [diff] [blame] | 64 | if test x$cpu_ia32 = xtrue ; then |
| 65 | AC_DEFINE(FLAC__ALIGN_MALLOC_DATA) |
| 66 | fi |
Josh Coalson | cf030c8 | 2001-05-23 20:59:48 +0000 | [diff] [blame] | 67 | |
| 68 | AC_ARG_ENABLE(asm-optimizations, [ --disable-asm-optimizations Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes) |
| 69 | AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno) |
Josh Coalson | 0e3576e | 2001-05-25 00:07:51 +0000 | [diff] [blame] | 70 | if test x$asm_opt = xno ; then |
| 71 | AC_DEFINE(FLAC__NO_ASM) |
| 72 | fi |
Josh Coalson | cf030c8 | 2001-05-23 20:59:48 +0000 | [diff] [blame] | 73 | |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 74 | AC_ARG_ENABLE(debug, |
Josh Coalson | da0adb2 | 2001-06-18 23:07:19 +0000 | [diff] [blame] | 75 | [ --enable-debug Turn on debugging], |
| 76 | [case "${enableval}" in |
| 77 | yes) debug=true ;; |
| 78 | no) debug=false ;; |
| 79 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;; |
| 80 | esac],[debug=false]) |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 81 | AM_CONDITIONAL(DEBUG, test x$debug = xtrue) |
| 82 | |
Josh Coalson | bb14ae8 | 2001-12-04 06:46:35 +0000 | [diff] [blame] | 83 | AC_ARG_ENABLE(sse, |
| 84 | [ --enable-sse Enable SSE support by asserting that the OS supports SSE instructions], |
Josh Coalson | d01b13a | 2001-07-18 00:27:06 +0000 | [diff] [blame] | 85 | [case "${enableval}" in |
| 86 | yes) sse_os=true ;; |
| 87 | no) sse_os=false ;; |
Josh Coalson | bb14ae8 | 2001-12-04 06:46:35 +0000 | [diff] [blame] | 88 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;; |
Josh Coalson | d01b13a | 2001-07-18 00:27:06 +0000 | [diff] [blame] | 89 | esac],[sse_os=false]) |
| 90 | AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue) |
| 91 | if test x$sse_os = xtrue ; then |
| 92 | AC_DEFINE(FLAC__SSE_OS) |
| 93 | fi |
| 94 | |
Josh Coalson | 28311cf | 2002-12-26 19:35:19 +0000 | [diff] [blame] | 95 | AC_ARG_ENABLE(3dnow, |
| 96 | [ --disable-3dnow Disable 3DNOW! optimizations], |
| 97 | [case "${enableval}" in |
| 98 | yes) use_3dnow=true ;; |
| 99 | no) use_3dnow=false ;; |
| 100 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;; |
| 101 | esac],[use_3dnow=true]) |
| 102 | AM_CONDITIONAL(FLaC__USE_3DNOW, test x$use_3dnow = xtrue) |
| 103 | if test x$use_3dnow = xtrue ; then |
Josh Coalson | c69f878 | 2001-11-13 23:08:22 +0000 | [diff] [blame] | 104 | AC_DEFINE(FLAC__USE_3DNOW) |
| 105 | fi |
| 106 | |
Josh Coalson | 3aadd10 | 2004-07-27 01:13:16 +0000 | [diff] [blame] | 107 | AC_ARG_ENABLE(altivec, |
| 108 | [ --disable-altivec Disable Altivec optimizations], |
| 109 | [case "${enableval}" in |
| 110 | yes) use_altivec=true ;; |
| 111 | no) use_altivec=false ;; |
| 112 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;; |
| 113 | esac],[use_altivec=true]) |
| 114 | AM_CONDITIONAL(FLaC__USE_ALTIVEC, test x$use_altivec = xtrue) |
| 115 | if test x$use_altivec = xtrue ; then |
| 116 | AC_DEFINE(FLAC__USE_ALTIVEC) |
| 117 | fi |
| 118 | |
Josh Coalson | 3d73072 | 2003-01-14 06:59:50 +0000 | [diff] [blame] | 119 | AC_ARG_ENABLE(local-xmms-plugin, |
| 120 | [ --enable-local-xmms-plugin Install XMMS plugin to ~/.xmms/Plugins instead of system location], |
| 121 | [case "${enableval}" in |
| 122 | yes) install_xmms_plugin_locally=true ;; |
| 123 | no) install_xmms_plugin_locally=false ;; |
| 124 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;; |
| 125 | esac],[install_xmms_plugin_locally=false]) |
| 126 | AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test x$install_xmms_plugin_locally = xtrue) |
| 127 | |
Josh Coalson | 9b14518 | 2002-08-30 05:39:36 +0000 | [diff] [blame] | 128 | AC_ARG_ENABLE(exhaustive-tests, |
Josh Coalson | b776793 | 2002-09-17 05:36:39 +0000 | [diff] [blame] | 129 | [ --enable-exhaustive-tests Enable exhaustive testing], |
Josh Coalson | 9b14518 | 2002-08-30 05:39:36 +0000 | [diff] [blame] | 130 | [case "${enableval}" in |
| 131 | yes) exhaustive_tests=true ;; |
| 132 | no) exhaustive_tests=false ;; |
| 133 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;; |
| 134 | esac],[exhaustive_tests=false]) |
| 135 | AM_CONDITIONAL(FLaC__EXHAUSTIVE_TESTS, test x$exhaustive_tests = xtrue) |
Josh Coalson | 962bb3b | 2002-12-28 07:08:31 +0000 | [diff] [blame] | 136 | if test x$exhaustive_tests = xtrue ; then |
| 137 | AC_DEFINE(FLAC__EXHAUSTIVE_TESTS) |
| 138 | fi |
Josh Coalson | d192362 | 2002-12-05 06:36:12 +0000 | [diff] [blame] | 139 | |
| 140 | AC_ARG_ENABLE(valgrind-testing, |
| 141 | [ --enable-valgrind-testing Run all tests inside Valgrind], |
| 142 | [case "${enableval}" in |
| 143 | yes) valgrind_testing=true ;; |
| 144 | no) valgrind_testing=false ;; |
| 145 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;; |
| 146 | esac],[valgrind_testing=false]) |
| 147 | AM_CONDITIONAL(FLaC__VALGRIND_TESTING, test x$valgrind_testing = xtrue) |
Josh Coalson | 962bb3b | 2002-12-28 07:08:31 +0000 | [diff] [blame] | 148 | if test x$valgrind_testing = xtrue ; then |
| 149 | AC_DEFINE(FLAC__VALGRIND_TESTING) |
| 150 | fi |
Josh Coalson | 9b14518 | 2002-08-30 05:39:36 +0000 | [diff] [blame] | 151 | |
Josh Coalson | e2fece2 | 2002-09-09 21:54:28 +0000 | [diff] [blame] | 152 | dnl check for ogg library |
Josh Coalson | 3f6c998 | 2002-09-05 05:40:58 +0000 | [diff] [blame] | 153 | XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built])) |
Josh Coalson | c8a7d35 | 2001-11-11 03:59:46 +0000 | [diff] [blame] | 154 | AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes]) |
| 155 | if test x$have_ogg = xyes ; then |
| 156 | AC_DEFINE(FLAC__HAS_OGG) |
| 157 | fi |
Josh Coalson | f7fc5c8 | 2001-10-31 18:31:36 +0000 | [diff] [blame] | 158 | |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 159 | AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built])) |
Josh Coalson | cf030c8 | 2001-05-23 20:59:48 +0000 | [diff] [blame] | 160 | AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x) |
| 161 | |
Josh Coalson | 130cbb5 | 2002-07-16 16:12:27 +0000 | [diff] [blame] | 162 | dnl check for i18n(internationalization); these are from libiconv/gettext |
Josh Coalson | 412fa3b | 2002-07-11 06:15:30 +0000 | [diff] [blame] | 163 | AM_ICONV |
| 164 | AM_LANGINFO_CODESET |
| 165 | |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 166 | AC_CHECK_PROGS(DOXYGEN, doxygen) |
| 167 | AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN") |
| 168 | if test -n "$DOXYGEN" ; then |
| 169 | AC_DEFINE(FLAC__HAS_DOXYGEN) |
| 170 | fi |
| 171 | |
Josh Coalson | 90e5716 | 2004-07-30 00:46:39 +0000 | [diff] [blame] | 172 | AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man) |
| 173 | AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN") |
| 174 | if test -n "$DOCBOOK_TO_MAN" ; then |
| 175 | AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN) |
| 176 | fi |
| 177 | |
Josh Coalson | cf030c8 | 2001-05-23 20:59:48 +0000 | [diff] [blame] | 178 | AC_CHECK_PROGS(NASM, nasm) |
| 179 | AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM") |
Josh Coalson | 0e3576e | 2001-05-25 00:07:51 +0000 | [diff] [blame] | 180 | if test -n "$NASM" ; then |
| 181 | AC_DEFINE(FLAC__HAS_NASM) |
| 182 | fi |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 183 | |
Josh Coalson | 57ba6f4 | 2002-06-07 05:27:37 +0000 | [diff] [blame] | 184 | OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include' |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 185 | if test x$debug = xtrue; then |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 186 | OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -O0 -DDEBUG" |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 187 | else |
Josh Coalson | 1e70455 | 2003-05-19 23:59:49 +0000 | [diff] [blame] | 188 | OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O2 -DNDEBUG" |
Josh Coalson | da0adb2 | 2001-06-18 23:07:19 +0000 | [diff] [blame] | 189 | if test x$GCC = xyes; then |
Josh Coalson | 1e70455 | 2003-05-19 23:59:49 +0000 | [diff] [blame] | 190 | OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O3 -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__" |
Josh Coalson | da0adb2 | 2001-06-18 23:07:19 +0000 | [diff] [blame] | 191 | fi |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 192 | fi |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 193 | CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS" |
| 194 | CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS" |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 195 | |
Matt Zimmerman | e525917 | 2002-10-10 16:51:06 +0000 | [diff] [blame] | 196 | AM_CONFIG_HEADER(config.h) |
Josh Coalson | f0a8c4f | 2003-01-15 03:17:51 +0000 | [diff] [blame] | 197 | AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries]) |
Matt Zimmerman | e525917 | 2002-10-10 16:51:06 +0000 | [diff] [blame] | 198 | AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386]) |
| 199 | AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC]) |
| 200 | AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC]) |
Josh Coalson | 3238673 | 2003-01-02 07:29:58 +0000 | [diff] [blame] | 201 | AH_TEMPLATE(FLAC__EXHAUSTIVE_TESTS, [define to run even more tests]) |
| 202 | AH_TEMPLATE(FLAC__VALGRIND_TESTING, [define to enable use of Valgrind in testers]) |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 203 | AH_TEMPLATE(FLAC__HAS_DOXYGEN, [define if you have Doxygen]) |
Josh Coalson | 90e5716 | 2004-07-30 00:46:39 +0000 | [diff] [blame] | 204 | AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man]) |
Matt Zimmerman | e525917 | 2002-10-10 16:51:06 +0000 | [diff] [blame] | 205 | AH_TEMPLATE(FLAC__HAS_NASM, [define if you have the NASM assembler]) |
| 206 | AH_TEMPLATE(FLAC__HAS_OGG, [define if you have the ogg library]) |
| 207 | AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code]) |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 208 | AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions]) |
Matt Zimmerman | e525917 | 2002-10-10 16:51:06 +0000 | [diff] [blame] | 209 | AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions]) |
Josh Coalson | 3aadd10 | 2004-07-27 01:13:16 +0000 | [diff] [blame] | 210 | AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions]) |
Matt Zimmerman | e525917 | 2002-10-10 16:51:06 +0000 | [diff] [blame] | 211 | |
uid38180 | b4bc14b | 2002-09-09 20:53:08 +0000 | [diff] [blame] | 212 | AC_OUTPUT( \ |
Josh Coalson | 1d96b7e | 2002-07-24 06:13:33 +0000 | [diff] [blame] | 213 | Makefile \ |
| 214 | src/Makefile \ |
| 215 | src/libFLAC/Makefile \ |
| 216 | src/libFLAC/ia32/Makefile \ |
Josh Coalson | 3aadd10 | 2004-07-27 01:13:16 +0000 | [diff] [blame] | 217 | src/libFLAC/ppc/Makefile \ |
Josh Coalson | 1d96b7e | 2002-07-24 06:13:33 +0000 | [diff] [blame] | 218 | src/libFLAC/include/Makefile \ |
| 219 | src/libFLAC/include/private/Makefile \ |
| 220 | src/libFLAC/include/protected/Makefile \ |
| 221 | src/libFLAC++/Makefile \ |
Josh Coalson | c49380d | 2002-08-07 17:38:08 +0000 | [diff] [blame] | 222 | src/libOggFLAC/Makefile \ |
| 223 | src/libOggFLAC/include/Makefile \ |
Josh Coalson | ce3dd36 | 2003-12-17 05:26:34 +0000 | [diff] [blame] | 224 | src/libOggFLAC/include/private/Makefile \ |
Josh Coalson | c49380d | 2002-08-07 17:38:08 +0000 | [diff] [blame] | 225 | src/libOggFLAC/include/protected/Makefile \ |
| 226 | src/libOggFLAC++/Makefile \ |
Josh Coalson | 1d96b7e | 2002-07-24 06:13:33 +0000 | [diff] [blame] | 227 | src/flac/Makefile \ |
| 228 | src/metaflac/Makefile \ |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 229 | src/monkeys_audio_utilities/Makefile \ |
Josh Coalson | 1f99eac | 2002-08-23 06:45:23 +0000 | [diff] [blame] | 230 | src/monkeys_audio_utilities/flac_mac/Makefile \ |
| 231 | src/monkeys_audio_utilities/flac_ren/Makefile \ |
Josh Coalson | 1f99eac | 2002-08-23 06:45:23 +0000 | [diff] [blame] | 232 | src/plugin_common/Makefile \ |
| 233 | src/plugin_winamp2/Makefile \ |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 234 | src/plugin_winamp2/include/Makefile \ |
| 235 | src/plugin_winamp2/include/winamp2/Makefile \ |
Josh Coalson | 1d96b7e | 2002-07-24 06:13:33 +0000 | [diff] [blame] | 236 | src/plugin_xmms/Makefile \ |
| 237 | src/share/Makefile \ |
Josh Coalson | 3c043fd | 2002-10-25 04:57:05 +0000 | [diff] [blame] | 238 | src/share/getopt/Makefile \ |
Josh Coalson | b8f8a07 | 2002-11-07 05:07:30 +0000 | [diff] [blame] | 239 | src/share/grabbag/Makefile \ |
Josh Coalson | 9c650a5 | 2003-12-17 04:51:06 +0000 | [diff] [blame] | 240 | src/share/replaygain_analysis/Makefile \ |
| 241 | src/share/replaygain_synthesis/Makefile \ |
Josh Coalson | e2999b7 | 2003-12-17 04:54:20 +0000 | [diff] [blame] | 242 | src/share/replaygain_synthesis/include/Makefile \ |
| 243 | src/share/replaygain_synthesis/include/private/Makefile \ |
Josh Coalson | 3c043fd | 2002-10-25 04:57:05 +0000 | [diff] [blame] | 244 | src/share/utf8/Makefile \ |
Josh Coalson | 1dca1c2 | 2002-12-03 06:30:14 +0000 | [diff] [blame] | 245 | src/test_grabbag/Makefile \ |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 246 | src/test_grabbag/cuesheet/Makefile \ |
Josh Coalson | 1d96b7e | 2002-07-24 06:13:33 +0000 | [diff] [blame] | 247 | src/test_libFLAC/Makefile \ |
| 248 | src/test_libFLAC++/Makefile \ |
Josh Coalson | 1f99eac | 2002-08-23 06:45:23 +0000 | [diff] [blame] | 249 | src/test_libOggFLAC/Makefile \ |
| 250 | src/test_libOggFLAC++/Makefile \ |
Josh Coalson | 94b5499 | 2004-09-21 05:41:23 +0000 | [diff] [blame] | 251 | src/test_seeking/Makefile \ |
Josh Coalson | 1d96b7e | 2002-07-24 06:13:33 +0000 | [diff] [blame] | 252 | src/test_streams/Makefile \ |
Josh Coalson | da0adb2 | 2001-06-18 23:07:19 +0000 | [diff] [blame] | 253 | include/Makefile \ |
| 254 | include/FLAC/Makefile \ |
Josh Coalson | 5a804ca | 2002-05-17 06:08:13 +0000 | [diff] [blame] | 255 | include/FLAC++/Makefile \ |
Josh Coalson | 1f99eac | 2002-08-23 06:45:23 +0000 | [diff] [blame] | 256 | include/OggFLAC/Makefile \ |
| 257 | include/OggFLAC++/Makefile \ |
Josh Coalson | 5a804ca | 2002-05-17 06:08:13 +0000 | [diff] [blame] | 258 | include/share/Makefile \ |
Josh Coalson | b8f8a07 | 2002-11-07 05:07:30 +0000 | [diff] [blame] | 259 | include/share/grabbag/Makefile \ |
Josh Coalson | 4c8f73a | 2001-07-22 07:27:45 +0000 | [diff] [blame] | 260 | doc/Makefile \ |
Josh Coalson | 130cbb5 | 2002-07-16 16:12:27 +0000 | [diff] [blame] | 261 | doc/html/Makefile \ |
| 262 | doc/html/images/Makefile \ |
| 263 | doc/html/ru/Makefile \ |
Josh Coalson | 4c8f73a | 2001-07-22 07:27:45 +0000 | [diff] [blame] | 264 | man/Makefile \ |
Josh Coalson | 1d96b7e | 2002-07-24 06:13:33 +0000 | [diff] [blame] | 265 | test/Makefile \ |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 266 | test/cuesheets/Makefile \ |
Josh Coalson | 1f99eac | 2002-08-23 06:45:23 +0000 | [diff] [blame] | 267 | build/Makefile \ |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 268 | obj/Makefile \ |
| 269 | obj/debug/Makefile \ |
Josh Coalson | b74fc98 | 2002-11-20 06:40:08 +0000 | [diff] [blame] | 270 | obj/debug/bin/Makefile \ |
| 271 | obj/debug/lib/Makefile \ |
Josh Coalson | 2080974 | 2003-01-10 04:39:20 +0000 | [diff] [blame] | 272 | obj/release/Makefile \ |
Josh Coalson | b74fc98 | 2002-11-20 06:40:08 +0000 | [diff] [blame] | 273 | obj/release/bin/Makefile \ |
| 274 | obj/release/lib/Makefile \ |
Josh Coalson | 1f99eac | 2002-08-23 06:45:23 +0000 | [diff] [blame] | 275 | flac.pbproj/Makefile \ |
Josh Coalson | da0adb2 | 2001-06-18 23:07:19 +0000 | [diff] [blame] | 276 | ) |