2001-06-08 04:13:21 +04:00
|
|
|
# FLAC - Free Lossless Audio Codec
|
2005-01-25 07:17:55 +03:00
|
|
|
# Copyright (C) 2001,2002,2003,2004,2005 Josh Coalson
|
2001-06-08 04:13:21 +04:00
|
|
|
#
|
2003-02-07 03:14:32 +03:00
|
|
|
# This file is part the FLAC project. FLAC is comprised of several
|
|
|
|
# components distributed under difference licenses. The codec libraries
|
|
|
|
# are distributed under Xiph.Org's BSD-like license (see the file
|
|
|
|
# COPYING.Xiph in this distribution). All other programs, libraries, and
|
|
|
|
# plugins are distributed under the GPL (see COPYING.GPL). The documentation
|
|
|
|
# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
|
|
|
|
# FLAC distribution contains at the top the terms under which it may be
|
|
|
|
# distributed.
|
2001-06-08 04:13:21 +04:00
|
|
|
#
|
2003-02-07 03:14:32 +03:00
|
|
|
# Since this particular file is relevant to all components of FLAC,
|
|
|
|
# it may be distributed under the Xiph.Org license, which is the least
|
|
|
|
# restrictive of those mentioned above. See the file COPYING.Xiph in this
|
|
|
|
# distribution.
|
2001-06-08 04:13:21 +04:00
|
|
|
|
2001-05-25 04:07:51 +04:00
|
|
|
# NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__
|
2001-05-24 00:59:48 +04:00
|
|
|
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
|
|
|
|
|
2001-01-20 01:39:39 +03:00
|
|
|
AC_INIT(src/flac/main.c)
|
2004-09-10 04:20:04 +04:00
|
|
|
AM_INIT_AUTOMAKE(flac, 1.1.1)
|
2001-01-20 01:39:39 +03:00
|
|
|
|
2002-10-05 18:41:19 +04:00
|
|
|
# Don't automagically regenerate autoconf/automake generated files unless
|
|
|
|
# explicitly requested. Eases autobuilding -mdz
|
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
2001-01-20 01:39:39 +03:00
|
|
|
# We need two libtools, one that builds both shared and static, and
|
|
|
|
# one that builds only static. This is because the resulting libtool
|
|
|
|
# does not allow us to choose which to build at runtime.
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
|
|
|
|
chmod +x libtool-disable-static
|
|
|
|
|
2004-07-29 09:25:36 +04:00
|
|
|
AM_PROG_AS
|
2002-06-07 09:27:37 +04:00
|
|
|
AC_PROG_CXX
|
2001-01-20 01:39:39 +03:00
|
|
|
AC_PROG_MAKE_SET
|
|
|
|
|
2005-01-27 06:59:55 +03:00
|
|
|
AC_CHECK_TYPES(socklen_t, [], [])
|
|
|
|
|
2002-05-17 10:08:13 +04:00
|
|
|
dnl check for getopt in standard library
|
|
|
|
dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
|
|
|
|
AC_CHECK_FUNCS(getopt_long, [], [])
|
|
|
|
|
|
|
|
case "$host_cpu" in
|
2001-05-25 04:07:51 +04:00
|
|
|
i*86) cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;
|
|
|
|
powerpc) cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;;
|
|
|
|
sparc) cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;;
|
2001-05-24 00:59:48 +04:00
|
|
|
esac
|
|
|
|
AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue)
|
|
|
|
AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue)
|
|
|
|
AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue)
|
2001-06-19 03:07:19 +04:00
|
|
|
case "$host" in
|
2003-04-27 12:32:41 +04:00
|
|
|
i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;;
|
2001-06-19 03:07:19 +04:00
|
|
|
*) OBJ_FORMAT=elf ;;
|
|
|
|
esac
|
2005-01-27 06:59:55 +03:00
|
|
|
AC_SUBST(OBJ_FORMAT)
|
|
|
|
case "$host" in
|
|
|
|
*-pc-linux-gnu) sys_linux=true ; AC_DEFINE(FLAC__SYS_LINUX) ;;
|
|
|
|
*-*-darwin*) sys_darwin=true ; AC_DEFINE(FLAC__SYS_DARWIN) ;;
|
|
|
|
esac
|
2005-01-21 04:51:09 +03:00
|
|
|
AM_CONDITIONAL(FLaC__SYS_DARWIN, test x$sys_darwin = xtrue)
|
|
|
|
AM_CONDITIONAL(FLaC__SYS_LINUX, test x$sys_linux = xtrue)
|
2001-05-24 00:59:48 +04:00
|
|
|
|
2001-05-25 04:07:51 +04:00
|
|
|
if test x$cpu_ia32 = xtrue ; then
|
|
|
|
AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
|
|
|
|
fi
|
2001-05-24 00:59:48 +04:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(asm-optimizations, [ --disable-asm-optimizations Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes)
|
|
|
|
AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno)
|
2001-05-25 04:07:51 +04:00
|
|
|
if test x$asm_opt = xno ; then
|
|
|
|
AC_DEFINE(FLAC__NO_ASM)
|
|
|
|
fi
|
2001-05-24 00:59:48 +04:00
|
|
|
|
2001-01-20 01:39:39 +03:00
|
|
|
AC_ARG_ENABLE(debug,
|
2001-06-19 03:07:19 +04:00
|
|
|
[ --enable-debug Turn on debugging],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) debug=true ;;
|
|
|
|
no) debug=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
|
|
|
|
esac],[debug=false])
|
2001-01-20 01:39:39 +03:00
|
|
|
AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
|
|
|
|
|
2001-12-04 09:46:35 +03:00
|
|
|
AC_ARG_ENABLE(sse,
|
|
|
|
[ --enable-sse Enable SSE support by asserting that the OS supports SSE instructions],
|
2001-07-18 04:27:06 +04:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sse_os=true ;;
|
|
|
|
no) sse_os=false ;;
|
2001-12-04 09:46:35 +03:00
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
|
2001-07-18 04:27:06 +04:00
|
|
|
esac],[sse_os=false])
|
|
|
|
AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue)
|
|
|
|
if test x$sse_os = xtrue ; then
|
|
|
|
AC_DEFINE(FLAC__SSE_OS)
|
|
|
|
fi
|
|
|
|
|
2002-12-26 22:35:19 +03:00
|
|
|
AC_ARG_ENABLE(3dnow,
|
|
|
|
[ --disable-3dnow Disable 3DNOW! optimizations],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) use_3dnow=true ;;
|
|
|
|
no) use_3dnow=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
|
|
|
|
esac],[use_3dnow=true])
|
|
|
|
AM_CONDITIONAL(FLaC__USE_3DNOW, test x$use_3dnow = xtrue)
|
|
|
|
if test x$use_3dnow = xtrue ; then
|
2001-11-14 02:08:22 +03:00
|
|
|
AC_DEFINE(FLAC__USE_3DNOW)
|
|
|
|
fi
|
|
|
|
|
2004-07-27 05:13:16 +04:00
|
|
|
AC_ARG_ENABLE(altivec,
|
|
|
|
[ --disable-altivec Disable Altivec optimizations],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) use_altivec=true ;;
|
|
|
|
no) use_altivec=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;;
|
|
|
|
esac],[use_altivec=true])
|
|
|
|
AM_CONDITIONAL(FLaC__USE_ALTIVEC, test x$use_altivec = xtrue)
|
|
|
|
if test x$use_altivec = xtrue ; then
|
|
|
|
AC_DEFINE(FLAC__USE_ALTIVEC)
|
|
|
|
fi
|
|
|
|
|
2003-01-14 09:59:50 +03:00
|
|
|
AC_ARG_ENABLE(local-xmms-plugin,
|
|
|
|
[ --enable-local-xmms-plugin Install XMMS plugin to ~/.xmms/Plugins instead of system location],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) install_xmms_plugin_locally=true ;;
|
|
|
|
no) install_xmms_plugin_locally=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;;
|
|
|
|
esac],[install_xmms_plugin_locally=false])
|
|
|
|
AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test x$install_xmms_plugin_locally = xtrue)
|
|
|
|
|
2002-08-30 09:39:36 +04:00
|
|
|
AC_ARG_ENABLE(exhaustive-tests,
|
2002-09-17 09:36:39 +04:00
|
|
|
[ --enable-exhaustive-tests Enable exhaustive testing],
|
2002-08-30 09:39:36 +04:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) exhaustive_tests=true ;;
|
|
|
|
no) exhaustive_tests=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
|
|
|
|
esac],[exhaustive_tests=false])
|
|
|
|
AM_CONDITIONAL(FLaC__EXHAUSTIVE_TESTS, test x$exhaustive_tests = xtrue)
|
2002-12-28 10:08:31 +03:00
|
|
|
if test x$exhaustive_tests = xtrue ; then
|
|
|
|
AC_DEFINE(FLAC__EXHAUSTIVE_TESTS)
|
|
|
|
fi
|
2002-12-05 09:36:12 +03:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(valgrind-testing,
|
|
|
|
[ --enable-valgrind-testing Run all tests inside Valgrind],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) valgrind_testing=true ;;
|
|
|
|
no) valgrind_testing=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;;
|
|
|
|
esac],[valgrind_testing=false])
|
|
|
|
AM_CONDITIONAL(FLaC__VALGRIND_TESTING, test x$valgrind_testing = xtrue)
|
2002-12-28 10:08:31 +03:00
|
|
|
if test x$valgrind_testing = xtrue ; then
|
|
|
|
AC_DEFINE(FLAC__VALGRIND_TESTING)
|
|
|
|
fi
|
2002-08-30 09:39:36 +04:00
|
|
|
|
2002-09-10 01:54:28 +04:00
|
|
|
dnl check for ogg library
|
2002-09-05 09:40:58 +04:00
|
|
|
XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
|
2001-11-11 06:59:46 +03:00
|
|
|
AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
|
|
|
|
if test x$have_ogg = xyes ; then
|
|
|
|
AC_DEFINE(FLAC__HAS_OGG)
|
|
|
|
fi
|
2001-10-31 21:31:36 +03:00
|
|
|
|
2001-01-20 01:39:39 +03:00
|
|
|
AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
|
2001-05-24 00:59:48 +04:00
|
|
|
AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
|
|
|
|
|
2002-07-16 20:12:27 +04:00
|
|
|
dnl check for i18n(internationalization); these are from libiconv/gettext
|
2002-07-11 10:15:30 +04:00
|
|
|
AM_ICONV
|
|
|
|
AM_LANGINFO_CODESET
|
|
|
|
|
2003-01-10 07:39:20 +03:00
|
|
|
AC_CHECK_PROGS(DOXYGEN, doxygen)
|
|
|
|
AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN")
|
|
|
|
if test -n "$DOXYGEN" ; then
|
|
|
|
AC_DEFINE(FLAC__HAS_DOXYGEN)
|
|
|
|
fi
|
|
|
|
|
2004-07-30 04:46:39 +04:00
|
|
|
AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man)
|
|
|
|
AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN")
|
|
|
|
if test -n "$DOCBOOK_TO_MAN" ; then
|
|
|
|
AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN)
|
|
|
|
fi
|
|
|
|
|
2004-12-30 04:13:03 +03:00
|
|
|
# only matters for x86
|
2001-05-24 00:59:48 +04:00
|
|
|
AC_CHECK_PROGS(NASM, nasm)
|
|
|
|
AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
|
2001-05-25 04:07:51 +04:00
|
|
|
if test -n "$NASM" ; then
|
|
|
|
AC_DEFINE(FLAC__HAS_NASM)
|
|
|
|
fi
|
2001-01-20 01:39:39 +03:00
|
|
|
|
2004-12-30 04:13:03 +03:00
|
|
|
# only matters for PowerPC
|
|
|
|
AC_CHECK_PROGS(AS, as)
|
|
|
|
AC_CHECK_PROGS(GAS, gas)
|
|
|
|
AM_CONDITIONAL(FLaC__HAS_AS, test -n "$AS")
|
|
|
|
AM_CONDITIONAL(FLaC__HAS_GAS, test -n "$GAS")
|
|
|
|
if test -n "$AS" ; then
|
|
|
|
AC_DEFINE(FLAC__HAS_AS)
|
|
|
|
fi
|
|
|
|
if test -n "$GAS" ; then
|
|
|
|
# funniest. macro. ever.
|
|
|
|
AC_DEFINE(FLAC__HAS_GAS)
|
|
|
|
fi
|
|
|
|
|
2002-06-07 09:27:37 +04:00
|
|
|
OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
|
2001-01-20 01:39:39 +03:00
|
|
|
if test x$debug = xtrue; then
|
2003-01-10 07:39:20 +03:00
|
|
|
OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -g -O0 -DDEBUG"
|
2001-01-20 01:39:39 +03:00
|
|
|
else
|
2003-05-20 03:59:49 +04:00
|
|
|
OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O2 -DNDEBUG"
|
2001-06-19 03:07:19 +04:00
|
|
|
if test x$GCC = xyes; then
|
2003-05-20 03:59:49 +04:00
|
|
|
OUR_CFLAGS_HEAD="$OUR_CFLAGS_HEAD -O3 -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__"
|
2001-06-19 03:07:19 +04:00
|
|
|
fi
|
2001-01-20 01:39:39 +03:00
|
|
|
fi
|
2003-01-10 07:39:20 +03:00
|
|
|
CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS"
|
|
|
|
CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS"
|
2001-01-20 01:39:39 +03:00
|
|
|
|
2005-01-30 21:44:04 +03:00
|
|
|
#@@@@@@
|
|
|
|
AM_CONDITIONAL(FLaC__HAS_AS__TEMPORARILY_DISABLED, test "yes" = "no")
|
|
|
|
AM_CONDITIONAL(FLaC__HAS_GAS__TEMPORARILY_DISABLED, test "yes" = "no")
|
|
|
|
|
2002-10-10 20:51:06 +04:00
|
|
|
AM_CONFIG_HEADER(config.h)
|
2003-01-15 06:17:51 +03:00
|
|
|
AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries])
|
2002-10-10 20:51:06 +04:00
|
|
|
AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386])
|
|
|
|
AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC])
|
|
|
|
AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC])
|
2005-01-21 04:51:09 +03:00
|
|
|
AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X])
|
|
|
|
AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux])
|
2003-01-02 10:29:58 +03:00
|
|
|
AH_TEMPLATE(FLAC__EXHAUSTIVE_TESTS, [define to run even more tests])
|
|
|
|
AH_TEMPLATE(FLAC__VALGRIND_TESTING, [define to enable use of Valgrind in testers])
|
2003-01-10 07:39:20 +03:00
|
|
|
AH_TEMPLATE(FLAC__HAS_DOXYGEN, [define if you have Doxygen])
|
2004-07-30 04:46:39 +04:00
|
|
|
AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man])
|
2004-12-30 04:13:03 +03:00
|
|
|
AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler])
|
|
|
|
AH_TEMPLATE(FLAC__HAS_AS, [define if you are compiling for PowerPC and have the 'as' assembler])
|
|
|
|
AH_TEMPLATE(FLAC__HAS_GAS, [define if you are compiling for PowerPC and have the 'gas' assembler])
|
2002-10-10 20:51:06 +04:00
|
|
|
AH_TEMPLATE(FLAC__HAS_OGG, [define if you have the ogg library])
|
|
|
|
AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code])
|
2003-01-10 07:39:20 +03:00
|
|
|
AH_TEMPLATE(FLAC__SSE_OS, [define if your operating system supports SSE instructions])
|
2002-10-10 20:51:06 +04:00
|
|
|
AH_TEMPLATE(FLAC__USE_3DNOW, [define to enable use of 3Dnow! instructions])
|
2004-07-27 05:13:16 +04:00
|
|
|
AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions])
|
2002-10-10 20:51:06 +04:00
|
|
|
|
2002-09-10 00:53:08 +04:00
|
|
|
AC_OUTPUT( \
|
2002-07-24 10:13:33 +04:00
|
|
|
Makefile \
|
|
|
|
src/Makefile \
|
|
|
|
src/libFLAC/Makefile \
|
|
|
|
src/libFLAC/ia32/Makefile \
|
2004-07-27 05:13:16 +04:00
|
|
|
src/libFLAC/ppc/Makefile \
|
2004-12-30 04:13:03 +03:00
|
|
|
src/libFLAC/ppc/as/Makefile \
|
|
|
|
src/libFLAC/ppc/gas/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
src/libFLAC/include/Makefile \
|
|
|
|
src/libFLAC/include/private/Makefile \
|
|
|
|
src/libFLAC/include/protected/Makefile \
|
|
|
|
src/libFLAC++/Makefile \
|
2002-08-07 21:38:08 +04:00
|
|
|
src/libOggFLAC/Makefile \
|
|
|
|
src/libOggFLAC/include/Makefile \
|
2003-12-17 08:26:34 +03:00
|
|
|
src/libOggFLAC/include/private/Makefile \
|
2002-08-07 21:38:08 +04:00
|
|
|
src/libOggFLAC/include/protected/Makefile \
|
|
|
|
src/libOggFLAC++/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
src/flac/Makefile \
|
|
|
|
src/metaflac/Makefile \
|
2003-01-10 07:39:20 +03:00
|
|
|
src/monkeys_audio_utilities/Makefile \
|
2002-08-23 10:45:23 +04:00
|
|
|
src/monkeys_audio_utilities/flac_mac/Makefile \
|
|
|
|
src/monkeys_audio_utilities/flac_ren/Makefile \
|
|
|
|
src/plugin_common/Makefile \
|
|
|
|
src/plugin_winamp2/Makefile \
|
2003-01-10 07:39:20 +03:00
|
|
|
src/plugin_winamp2/include/Makefile \
|
|
|
|
src/plugin_winamp2/include/winamp2/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
src/plugin_xmms/Makefile \
|
|
|
|
src/share/Makefile \
|
2002-10-25 08:57:05 +04:00
|
|
|
src/share/getopt/Makefile \
|
2002-11-07 08:07:30 +03:00
|
|
|
src/share/grabbag/Makefile \
|
2003-12-17 07:51:06 +03:00
|
|
|
src/share/replaygain_analysis/Makefile \
|
|
|
|
src/share/replaygain_synthesis/Makefile \
|
2003-12-17 07:54:20 +03:00
|
|
|
src/share/replaygain_synthesis/include/Makefile \
|
|
|
|
src/share/replaygain_synthesis/include/private/Makefile \
|
2002-10-25 08:57:05 +04:00
|
|
|
src/share/utf8/Makefile \
|
2002-12-03 09:30:14 +03:00
|
|
|
src/test_grabbag/Makefile \
|
2003-01-10 07:39:20 +03:00
|
|
|
src/test_grabbag/cuesheet/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
src/test_libFLAC/Makefile \
|
|
|
|
src/test_libFLAC++/Makefile \
|
2002-08-23 10:45:23 +04:00
|
|
|
src/test_libOggFLAC/Makefile \
|
|
|
|
src/test_libOggFLAC++/Makefile \
|
2004-09-21 09:41:23 +04:00
|
|
|
src/test_seeking/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
src/test_streams/Makefile \
|
2001-06-19 03:07:19 +04:00
|
|
|
include/Makefile \
|
|
|
|
include/FLAC/Makefile \
|
2002-05-17 10:08:13 +04:00
|
|
|
include/FLAC++/Makefile \
|
2002-08-23 10:45:23 +04:00
|
|
|
include/OggFLAC/Makefile \
|
|
|
|
include/OggFLAC++/Makefile \
|
2002-05-17 10:08:13 +04:00
|
|
|
include/share/Makefile \
|
2002-11-07 08:07:30 +03:00
|
|
|
include/share/grabbag/Makefile \
|
2001-07-22 11:27:45 +04:00
|
|
|
doc/Makefile \
|
2002-07-16 20:12:27 +04:00
|
|
|
doc/html/Makefile \
|
|
|
|
doc/html/images/Makefile \
|
|
|
|
doc/html/ru/Makefile \
|
2001-07-22 11:27:45 +04:00
|
|
|
man/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
test/Makefile \
|
2003-01-10 07:39:20 +03:00
|
|
|
test/cuesheets/Makefile \
|
2002-08-23 10:45:23 +04:00
|
|
|
build/Makefile \
|
2003-01-10 07:39:20 +03:00
|
|
|
obj/Makefile \
|
|
|
|
obj/debug/Makefile \
|
2002-11-20 09:40:08 +03:00
|
|
|
obj/debug/bin/Makefile \
|
|
|
|
obj/debug/lib/Makefile \
|
2003-01-10 07:39:20 +03:00
|
|
|
obj/release/Makefile \
|
2002-11-20 09:40:08 +03:00
|
|
|
obj/release/bin/Makefile \
|
|
|
|
obj/release/lib/Makefile \
|
2002-08-23 10:45:23 +04:00
|
|
|
flac.pbproj/Makefile \
|
2001-06-19 03:07:19 +04:00
|
|
|
)
|