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