2001-06-08 00:13:21 +00:00
|
|
|
# FLAC - Free Lossless Audio Codec
|
2005-01-25 04:17:55 +00:00
|
|
|
# Copyright (C) 2001,2002,2003,2004,2005 Josh Coalson
|
2001-06-08 00:13:21 +00:00
|
|
|
#
|
2003-02-07 00:14:32 +00: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 00:13:21 +00:00
|
|
|
#
|
2003-02-07 00:14:32 +00: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 00:13:21 +00:00
|
|
|
|
2002-08-30 05:39:36 +00:00
|
|
|
if FLaC__EXHAUSTIVE_TESTS
|
2002-12-23 19:49:56 +00:00
|
|
|
FLAC__EXHAUSTIVE_TESTS = yes
|
2002-08-30 05:39:36 +00:00
|
|
|
else
|
2002-12-23 19:49:56 +00:00
|
|
|
FLAC__EXHAUSTIVE_TESTS = no
|
2002-08-30 05:39:36 +00:00
|
|
|
endif
|
|
|
|
|
2002-12-04 04:57:33 +00:00
|
|
|
if FLaC__VALGRIND_TESTING
|
2002-12-23 19:49:56 +00:00
|
|
|
FLAC__VALGRIND = yes
|
2002-12-04 04:57:33 +00:00
|
|
|
else
|
2002-12-23 19:49:56 +00:00
|
|
|
FLAC__VALGRIND = no
|
2002-12-04 04:57:33 +00:00
|
|
|
endif
|
|
|
|
|
2002-12-23 19:49:56 +00:00
|
|
|
TESTS_ENVIRONMENT = FLAC__EXHAUSTIVE_TESTS=$(FLAC__EXHAUSTIVE_TESTS) FLAC__VALGRIND=$(FLAC__VALGRIND)
|
|
|
|
|
2002-11-23 02:21:48 +00:00
|
|
|
SUBDIRS = cuesheets
|
|
|
|
|
2002-08-23 06:45:23 +00:00
|
|
|
if FLaC__HAS_OGG
|
|
|
|
OGG_TESTS = \
|
|
|
|
./test_libOggFLAC.sh \
|
|
|
|
./test_libOggFLAC++.sh
|
|
|
|
endif
|
|
|
|
|
2002-08-20 04:03:24 +00:00
|
|
|
TESTS = \
|
|
|
|
./test_libFLAC.sh \
|
|
|
|
./test_libFLAC++.sh \
|
2002-08-23 06:45:23 +00:00
|
|
|
$(OGG_TESTS) \
|
2002-12-10 06:42:15 +00:00
|
|
|
./test_flac.sh \
|
2002-08-20 04:03:24 +00:00
|
|
|
./test_metaflac.sh \
|
2002-11-23 02:21:48 +00:00
|
|
|
./test_grabbag.sh \
|
2004-11-09 01:28:05 +00:00
|
|
|
./test_seeking.sh \
|
2002-08-20 04:03:24 +00:00
|
|
|
./test_streams.sh \
|
|
|
|
./test_bins.sh
|
2001-01-19 22:39:39 +00:00
|
|
|
|
2002-06-07 05:27:37 +00:00
|
|
|
EXTRA_DIST = \
|
2002-08-23 06:45:23 +00:00
|
|
|
Makefile.lite \
|
2002-11-23 02:21:48 +00:00
|
|
|
cuesheet.ok \
|
2003-01-11 06:23:34 +00:00
|
|
|
metaflac.flac.in \
|
|
|
|
metaflac.flac.ok \
|
2002-06-07 05:27:37 +00:00
|
|
|
test_libFLAC.sh \
|
|
|
|
test_libFLAC++.sh \
|
2002-08-20 04:03:24 +00:00
|
|
|
test_libOggFLAC.sh \
|
|
|
|
test_libOggFLAC++.sh \
|
2002-12-10 06:42:15 +00:00
|
|
|
test_flac.sh \
|
2002-06-15 05:12:05 +00:00
|
|
|
test_metaflac.sh \
|
2002-11-23 02:21:48 +00:00
|
|
|
test_grabbag.sh \
|
2004-11-09 01:28:05 +00:00
|
|
|
test_seeking.sh \
|
2001-07-22 07:27:45 +00:00
|
|
|
test_streams.sh \
|
2002-06-15 05:12:05 +00:00
|
|
|
test_bins.sh
|
2001-07-22 07:27:45 +00:00
|
|
|
|
2001-07-18 23:42:07 +00:00
|
|
|
CLEANFILES = \
|
2002-08-30 05:39:36 +00:00
|
|
|
$(wildcard *.raw) \
|
|
|
|
$(wildcard *.flac) \
|
|
|
|
$(wildcard *.ogg) \
|
|
|
|
$(wildcard *.cmp) \
|
2002-12-17 08:15:20 +00:00
|
|
|
$(wildcard *.aiff) \
|
2002-08-30 05:39:36 +00:00
|
|
|
$(wildcard *.wav) \
|
2002-11-27 04:46:14 +00:00
|
|
|
$(wildcard *.diff) \
|
|
|
|
$(wildcard *.log) \
|
|
|
|
$(wildcard *.cue) \
|
|
|
|
core
|