annotate src/flac-1.2.1/configure.in @ 1:05aa0afa9217

Bring in flac, ogg, vorbis
author Chris Cannam
date Tue, 19 Mar 2013 17:37:49 +0000
parents
children
rev   line source
Chris@1 1 # FLAC - Free Lossless Audio Codec
Chris@1 2 # Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
Chris@1 3 #
Chris@1 4 # This file is part the FLAC project. FLAC is comprised of several
Chris@1 5 # components distributed under difference licenses. The codec libraries
Chris@1 6 # are distributed under Xiph.Org's BSD-like license (see the file
Chris@1 7 # COPYING.Xiph in this distribution). All other programs, libraries, and
Chris@1 8 # plugins are distributed under the GPL (see COPYING.GPL). The documentation
Chris@1 9 # is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
Chris@1 10 # FLAC distribution contains at the top the terms under which it may be
Chris@1 11 # distributed.
Chris@1 12 #
Chris@1 13 # Since this particular file is relevant to all components of FLAC,
Chris@1 14 # it may be distributed under the Xiph.Org license, which is the least
Chris@1 15 # restrictive of those mentioned above. See the file COPYING.Xiph in this
Chris@1 16 # distribution.
Chris@1 17
Chris@1 18 # NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__
Chris@1 19 # instead of FLAC__ since autoconf triggers off 'AC_' in strings
Chris@1 20
Chris@1 21 AC_INIT(src/flac/main.c)
Chris@1 22 AM_INIT_AUTOMAKE(flac, 1.2.1)
Chris@1 23
Chris@1 24 # Don't automagically regenerate autoconf/automake generated files unless
Chris@1 25 # explicitly requested. Eases autobuilding -mdz
Chris@1 26 AM_MAINTAINER_MODE
Chris@1 27
Chris@1 28 # We need two libtools, one that builds both shared and static, and
Chris@1 29 # one that builds only static. This is because the resulting libtool
Chris@1 30 # does not allow us to choose which to build at runtime.
Chris@1 31 AM_PROG_LIBTOOL
Chris@1 32 sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
Chris@1 33 chmod +x libtool-disable-static
Chris@1 34
Chris@1 35 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4")
Chris@1 36
Chris@1 37 AM_PROG_AS
Chris@1 38 AC_PROG_CXX
Chris@1 39 AC_PROG_MAKE_SET
Chris@1 40
Chris@1 41 AC_SYS_LARGEFILE
Chris@1 42 AC_FUNC_FSEEKO
Chris@1 43
Chris@1 44 AC_CHECK_SIZEOF(void*,0)
Chris@1 45
Chris@1 46 #@@@ new name is AC_CONFIG_HEADERS
Chris@1 47 AM_CONFIG_HEADER(config.h)
Chris@1 48
Chris@1 49 AC_C_BIGENDIAN
Chris@1 50
Chris@1 51 AC_CHECK_TYPES(socklen_t, [], [])
Chris@1 52
Chris@1 53 dnl check for getopt in standard library
Chris@1 54 dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
Chris@1 55 AC_CHECK_FUNCS(getopt_long, [], [])
Chris@1 56
Chris@1 57 case "$host_cpu" in
Chris@1 58 i*86)
Chris@1 59 cpu_ia32=true
Chris@1 60 AC_DEFINE(FLAC__CPU_IA32)
Chris@1 61 AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
Chris@1 62 ;;
Chris@1 63 powerpc)
Chris@1 64 cpu_ppc=true
Chris@1 65 AC_DEFINE(FLAC__CPU_PPC)
Chris@1 66 AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
Chris@1 67 ;;
Chris@1 68 sparc)
Chris@1 69 cpu_sparc=true
Chris@1 70 AC_DEFINE(FLAC__CPU_SPARC)
Chris@1 71 AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
Chris@1 72 ;;
Chris@1 73 esac
Chris@1 74 AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue)
Chris@1 75 AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue)
Chris@1 76 AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue)
Chris@1 77
Chris@1 78 case "$host" in
Chris@1 79 i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
Chris@1 80 *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;;
Chris@1 81 *-*-darwin*) OBJ_FORMAT=macho ;;
Chris@1 82 *) OBJ_FORMAT=elf ;;
Chris@1 83 esac
Chris@1 84 AC_SUBST(OBJ_FORMAT)
Chris@1 85
Chris@1 86 # only needed because of ntohl() usage, can get rid of after that's gone:
Chris@1 87 case "$host" in
Chris@1 88 *-*-cygwin|*mingw*) MINGW_WINSOCK_LIBS=-lwsock32 ;;
Chris@1 89 *) MINGW_WINSOCK_LIBS= ;;
Chris@1 90 esac
Chris@1 91 AC_SUBST(MINGW_WINSOCK_LIBS)
Chris@1 92
Chris@1 93 case "$host" in
Chris@1 94 *-pc-linux-gnu)
Chris@1 95 sys_linux=true
Chris@1 96 AC_DEFINE(FLAC__SYS_LINUX)
Chris@1 97 AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
Chris@1 98 ;;
Chris@1 99 *-*-darwin*)
Chris@1 100 sys_darwin=true
Chris@1 101 AC_DEFINE(FLAC__SYS_DARWIN)
Chris@1 102 AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
Chris@1 103 ;;
Chris@1 104 esac
Chris@1 105 AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue)
Chris@1 106 AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue)
Chris@1 107
Chris@1 108 if test "x$cpu_ia32" = xtrue ; then
Chris@1 109 AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
Chris@1 110 AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
Chris@1 111 fi
Chris@1 112
Chris@1 113 AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes)
Chris@1 114 AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno)
Chris@1 115 if test "x$asm_opt" = xno ; then
Chris@1 116 AC_DEFINE(FLAC__NO_ASM)
Chris@1 117 AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
Chris@1 118 fi
Chris@1 119
Chris@1 120 AC_ARG_ENABLE(debug,
Chris@1 121 AC_HELP_STRING([--enable-debug], [Turn on debugging]),
Chris@1 122 [case "${enableval}" in
Chris@1 123 yes) debug=true ;;
Chris@1 124 no) debug=false ;;
Chris@1 125 *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
Chris@1 126 esac],[debug=false])
Chris@1 127 AM_CONDITIONAL(DEBUG, test "x$debug" = xtrue)
Chris@1 128
Chris@1 129 AC_ARG_ENABLE(sse,
Chris@1 130 AC_HELP_STRING([--enable-sse], [Enable SSE support by asserting that the OS supports SSE instructions]),
Chris@1 131 [case "${enableval}" in
Chris@1 132 yes) sse_os=true ;;
Chris@1 133 no) sse_os=false ;;
Chris@1 134 *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
Chris@1 135 esac],[sse_os=false])
Chris@1 136 AM_CONDITIONAL(FLaC__SSE_OS, test "x$sse_os" = xtrue)
Chris@1 137 if test "x$sse_os" = xtrue ; then
Chris@1 138 AC_DEFINE(FLAC__SSE_OS)
Chris@1 139 AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
Chris@1 140 fi
Chris@1 141
Chris@1 142 AC_ARG_ENABLE(3dnow,
Chris@1 143 AC_HELP_STRING([--disable-3dnow], [Disable 3DNOW! optimizations]),
Chris@1 144 [case "${enableval}" in
Chris@1 145 yes) use_3dnow=true ;;
Chris@1 146 no) use_3dnow=false ;;
Chris@1 147 *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
Chris@1 148 esac],[use_3dnow=true])
Chris@1 149 AM_CONDITIONAL(FLaC__USE_3DNOW, test "x$use_3dnow" = xtrue)
Chris@1 150 if test "x$use_3dnow" = xtrue ; then
Chris@1 151 AC_DEFINE(FLAC__USE_3DNOW)
Chris@1 152 AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
Chris@1 153 fi
Chris@1 154
Chris@1 155 AC_ARG_ENABLE(altivec,
Chris@1 156 AC_HELP_STRING([--disable-altivec], [Disable Altivec optimizations]),
Chris@1 157 [case "${enableval}" in
Chris@1 158 yes) use_altivec=true ;;
Chris@1 159 no) use_altivec=false ;;
Chris@1 160 *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
Chris@1 161 esac],[use_altivec=true])
Chris@1 162 AM_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue)
Chris@1 163 if test "x$use_altivec" = xtrue ; then
Chris@1 164 AC_DEFINE(FLAC__USE_ALTIVEC)
Chris@1 165 AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
Chris@1 166 fi
Chris@1 167
Chris@1 168 AC_ARG_ENABLE(thorough-tests,
Chris@1 169 AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]),
Chris@1 170 [case "${enableval}" in
Chris@1 171 yes) thorough_tests=true ;;
Chris@1 172 no) thorough_tests=false ;;
Chris@1 173 *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;;
Chris@1 174 esac],[thorough_tests=true])
Chris@1 175 AC_ARG_ENABLE(exhaustive-tests,
Chris@1 176 AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]),
Chris@1 177 [case "${enableval}" in
Chris@1 178 yes) exhaustive_tests=true ;;
Chris@1 179 no) exhaustive_tests=false ;;
Chris@1 180 *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
Chris@1 181 esac],[exhaustive_tests=false])
Chris@1 182 if test "x$thorough_tests" = xfalse ; then
Chris@1 183 FLAC__TEST_LEVEL=0
Chris@1 184 elif test "x$exhaustive_tests" = xfalse ; then
Chris@1 185 FLAC__TEST_LEVEL=1
Chris@1 186 else
Chris@1 187 FLAC__TEST_LEVEL=2
Chris@1 188 fi
Chris@1 189 AC_SUBST(FLAC__TEST_LEVEL)
Chris@1 190
Chris@1 191 AC_ARG_ENABLE(valgrind-testing,
Chris@1 192 AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]),
Chris@1 193 [case "${enableval}" in
Chris@1 194 yes) FLAC__TEST_WITH_VALGRIND=yes ;;
Chris@1 195 no) FLAC__TEST_WITH_VALGRIND=no ;;
Chris@1 196 *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
Chris@1 197 esac],[FLAC__TEST_WITH_VALGRIND=no])
Chris@1 198 AC_SUBST(FLAC__TEST_WITH_VALGRIND)
Chris@1 199
Chris@1 200 AC_ARG_ENABLE(doxygen-docs,
Chris@1 201 AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]),
Chris@1 202 [case "${enableval}" in
Chris@1 203 yes) enable_doxygen_docs=true ;;
Chris@1 204 no) enable_doxygen_docs=false ;;
Chris@1 205 *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;;
Chris@1 206 esac],[enable_doxygen_docs=true])
Chris@1 207 if test "x$enable_doxygen_docs" != xfalse ; then
Chris@1 208 AC_CHECK_PROGS(DOXYGEN, doxygen)
Chris@1 209 fi
Chris@1 210 AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
Chris@1 211
Chris@1 212 AC_ARG_ENABLE(local-xmms-plugin,
Chris@1 213 AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]),
Chris@1 214 [case "${enableval}" in
Chris@1 215 yes) install_xmms_plugin_locally=true ;;
Chris@1 216 no) install_xmms_plugin_locally=false ;;
Chris@1 217 *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
Chris@1 218 esac],[install_xmms_plugin_locally=false])
Chris@1 219 AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue)
Chris@1 220
Chris@1 221 AC_ARG_ENABLE(xmms-plugin,
Chris@1 222 AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]),
Chris@1 223 [case "${enableval}" in
Chris@1 224 yes) enable_xmms_plugin=true ;;
Chris@1 225 no) enable_xmms_plugin=false ;;
Chris@1 226 *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;;
Chris@1 227 esac],[enable_xmms_plugin=true])
Chris@1 228 if test "x$enable_xmms_plugin" != xfalse ; then
Chris@1 229 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built]))
Chris@1 230 fi
Chris@1 231 AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR")
Chris@1 232
Chris@1 233 dnl build FLAC++ or not
Chris@1 234 AC_ARG_ENABLE([cpplibs],
Chris@1 235 AC_HELP_STRING([--disable-cpplibs], [Do not build libFLAC++]),
Chris@1 236 [case "${enableval}" in
Chris@1 237 yes) disable_cpplibs=false ;;
Chris@1 238 no) disable_cpplibs=true ;;
Chris@1 239 *) AC_MSG_ERROR(bad value ${enableval} for --enable-cpplibs) ;;
Chris@1 240 esac], [disable_cpplibs=false])
Chris@1 241 AM_CONDITIONAL(FLaC__WITH_CPPLIBS, [test "x$disable_cpplibs" != xtrue])
Chris@1 242
Chris@1 243 dnl check for ogg library
Chris@1 244 AC_ARG_ENABLE([ogg],
Chris@1 245 AC_HELP_STRING([--disable-ogg], [Disable ogg support (default: test for libogg)]),
Chris@1 246 [ want_ogg=$enableval ], [ want_ogg=yes ] )
Chris@1 247
Chris@1 248 if test "x$want_ogg" != "xno"; then
Chris@1 249 XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
Chris@1 250 fi
Chris@1 251
Chris@1 252 AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes])
Chris@1 253 if test "x$have_ogg" = xyes ; then
Chris@1 254 AC_DEFINE(FLAC__HAS_OGG)
Chris@1 255 AH_TEMPLATE(FLAC__HAS_OGG, [define if you have the ogg library])
Chris@1 256 fi
Chris@1 257
Chris@1 258 dnl check for i18n(internationalization); these are from libiconv/gettext
Chris@1 259 AM_ICONV
Chris@1 260 AM_LANGINFO_CODESET
Chris@1 261
Chris@1 262 AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
Chris@1 263 AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
Chris@1 264 if test -n "$DOCBOOK_TO_MAN" ; then
Chris@1 265 AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
Chris@1 266 AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
Chris@1 267 fi
Chris@1 268
Chris@1 269 # only matters for x86
Chris@1 270 AC_CHECK_PROGS(NASM, nasm)
Chris@1 271 AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
Chris@1 272 if test -n "$NASM" ; then
Chris@1 273 AC_DEFINE(FLAC__HAS_NASM)
Chris@1 274 AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
Chris@1 275 fi
Chris@1 276
Chris@1 277 # only matters for PowerPC
Chris@1 278 AC_CHECK_PROGS(AS, as, as)
Chris@1 279 AC_CHECK_PROGS(GAS, gas, gas)
Chris@1 280
Chris@1 281 # try -v (apple as) and --version (gas) at the same time
Chris@1 282 test "$AS" = "as" && as --version -v < /dev/null 2>&1 | grep Apple >/dev/null || AS=gas
Chris@1 283
Chris@1 284 AM_CONDITIONAL(FLaC__HAS_AS, test "$AS" = "as")
Chris@1 285 AM_CONDITIONAL(FLaC__HAS_GAS, test "$AS" = "gas")
Chris@1 286 if test "$AS" = "as" ; then
Chris@1 287 AC_DEFINE(FLAC__HAS_AS)
Chris@1 288 AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
Chris@1 289 fi
Chris@1 290 if test "$AS" = "gas" ; then
Chris@1 291 # funniest. macro. ever.
Chris@1 292 AC_DEFINE(FLAC__HAS_GAS)
Chris@1 293 AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
Chris@1 294 fi
Chris@1 295
Chris@1 296 CPPFLAGS='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'" $CPPFLAGS"
Chris@1 297 if test "x$debug" = xtrue; then
Chris@1 298 CPPFLAGS="-DDEBUG $CPPFLAGS"
Chris@1 299 CFLAGS="-g $CFLAGS"
Chris@1 300 else
Chris@1 301 CPPFLAGS="-DNDEBUG $CPPFLAGS"
Chris@1 302 if test "x$GCC" = xyes; then
Chris@1 303 CPPFLAGS="-DFLaC__INLINE=__inline__ $CPPFLAGS"
Chris@1 304 CFLAGS="-O3 -funroll-loops -finline-functions -Wall -W -Winline $CFLAGS"
Chris@1 305 fi
Chris@1 306 fi
Chris@1 307
Chris@1 308 #@@@
Chris@1 309 AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
Chris@1 310 AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
Chris@1 311
Chris@1 312 AC_CONFIG_FILES([ \
Chris@1 313 Makefile \
Chris@1 314 src/Makefile \
Chris@1 315 src/libFLAC/Makefile \
Chris@1 316 src/libFLAC/flac.pc \
Chris@1 317 src/libFLAC/ia32/Makefile \
Chris@1 318 src/libFLAC/ppc/Makefile \
Chris@1 319 src/libFLAC/ppc/as/Makefile \
Chris@1 320 src/libFLAC/ppc/gas/Makefile \
Chris@1 321 src/libFLAC/include/Makefile \
Chris@1 322 src/libFLAC/include/private/Makefile \
Chris@1 323 src/libFLAC/include/protected/Makefile \
Chris@1 324 src/libFLAC++/Makefile \
Chris@1 325 src/libFLAC++/flac++.pc \
Chris@1 326 src/flac/Makefile \
Chris@1 327 src/metaflac/Makefile \
Chris@1 328 src/monkeys_audio_utilities/Makefile \
Chris@1 329 src/monkeys_audio_utilities/flac_mac/Makefile \
Chris@1 330 src/monkeys_audio_utilities/flac_ren/Makefile \
Chris@1 331 src/plugin_common/Makefile \
Chris@1 332 src/plugin_winamp2/Makefile \
Chris@1 333 src/plugin_winamp2/include/Makefile \
Chris@1 334 src/plugin_winamp2/include/winamp2/Makefile \
Chris@1 335 src/plugin_xmms/Makefile \
Chris@1 336 src/share/Makefile \
Chris@1 337 src/share/getopt/Makefile \
Chris@1 338 src/share/grabbag/Makefile \
Chris@1 339 src/share/replaygain_analysis/Makefile \
Chris@1 340 src/share/replaygain_synthesis/Makefile \
Chris@1 341 src/share/replaygain_synthesis/include/Makefile \
Chris@1 342 src/share/replaygain_synthesis/include/private/Makefile \
Chris@1 343 src/share/utf8/Makefile \
Chris@1 344 src/test_grabbag/Makefile \
Chris@1 345 src/test_grabbag/cuesheet/Makefile \
Chris@1 346 src/test_grabbag/picture/Makefile \
Chris@1 347 src/test_libs_common/Makefile \
Chris@1 348 src/test_libFLAC/Makefile \
Chris@1 349 src/test_libFLAC++/Makefile \
Chris@1 350 src/test_seeking/Makefile \
Chris@1 351 src/test_streams/Makefile \
Chris@1 352 examples/Makefile \
Chris@1 353 examples/c/Makefile \
Chris@1 354 examples/c/decode/Makefile \
Chris@1 355 examples/c/decode/file/Makefile \
Chris@1 356 examples/c/encode/Makefile \
Chris@1 357 examples/c/encode/file/Makefile \
Chris@1 358 examples/cpp/Makefile \
Chris@1 359 examples/cpp/decode/Makefile \
Chris@1 360 examples/cpp/decode/file/Makefile \
Chris@1 361 examples/cpp/encode/Makefile \
Chris@1 362 examples/cpp/encode/file/Makefile \
Chris@1 363 include/Makefile \
Chris@1 364 include/FLAC/Makefile \
Chris@1 365 include/FLAC++/Makefile \
Chris@1 366 include/share/Makefile \
Chris@1 367 include/share/grabbag/Makefile \
Chris@1 368 include/test_libs_common/Makefile \
Chris@1 369 doc/Makefile \
Chris@1 370 doc/html/Makefile \
Chris@1 371 doc/html/images/Makefile \
Chris@1 372 doc/html/images/hw/Makefile \
Chris@1 373 doc/html/ru/Makefile \
Chris@1 374 m4/Makefile \
Chris@1 375 man/Makefile \
Chris@1 376 test/Makefile \
Chris@1 377 test/cuesheets/Makefile \
Chris@1 378 test/flac-to-flac-metadata-test-files/Makefile \
Chris@1 379 test/metaflac-test-files/Makefile \
Chris@1 380 test/pictures/Makefile \
Chris@1 381 build/Makefile \
Chris@1 382 obj/Makefile \
Chris@1 383 obj/debug/Makefile \
Chris@1 384 obj/debug/bin/Makefile \
Chris@1 385 obj/debug/lib/Makefile \
Chris@1 386 obj/release/Makefile \
Chris@1 387 obj/release/bin/Makefile \
Chris@1 388 obj/release/lib/Makefile \
Chris@1 389 ])
Chris@1 390 AC_OUTPUT