2001-06-08 04:13:21 +04:00
|
|
|
# FLAC - Free Lossless Audio Codec
|
2002-01-26 21:05:12 +03:00
|
|
|
# Copyright (C) 2001,2002 Josh Coalson
|
2001-06-08 04:13:21 +04:00
|
|
|
#
|
|
|
|
# This program is part of FLAC; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
2002-08-30 09:39:36 +04:00
|
|
|
if FLaC__EXHAUSTIVE_TESTS
|
|
|
|
TESTS_ENVIRONMENT = FLAC__EXHAUSTIVE_TESTS=yes
|
|
|
|
else
|
|
|
|
TESTS_ENVIRONMENT = FLAC__EXHAUSTIVE_TESTS=no
|
|
|
|
endif
|
|
|
|
|
2002-08-23 10:45:23 +04:00
|
|
|
if FLaC__HAS_OGG
|
|
|
|
OGG_TESTS = \
|
|
|
|
./test_libOggFLAC.sh \
|
|
|
|
./test_libOggFLAC++.sh
|
|
|
|
endif
|
|
|
|
|
2002-08-20 08:03:24 +04:00
|
|
|
TESTS = \
|
|
|
|
./test_libFLAC.sh \
|
|
|
|
./test_libFLAC++.sh \
|
2002-08-23 10:45:23 +04:00
|
|
|
$(OGG_TESTS) \
|
2002-08-20 08:03:24 +04:00
|
|
|
./test_metaflac.sh \
|
|
|
|
./test_streams.sh \
|
|
|
|
./test_bins.sh
|
2001-01-20 01:39:39 +03:00
|
|
|
|
2002-06-07 09:27:37 +04:00
|
|
|
EXTRA_DIST = \
|
2002-08-23 10:45:23 +04:00
|
|
|
Makefile.lite \
|
2002-06-07 09:27:37 +04:00
|
|
|
test_libFLAC.sh \
|
|
|
|
test_libFLAC++.sh \
|
2002-08-20 08:03:24 +04:00
|
|
|
test_libOggFLAC.sh \
|
|
|
|
test_libOggFLAC++.sh \
|
2002-06-15 09:12:05 +04:00
|
|
|
test_metaflac.sh \
|
2001-07-22 11:27:45 +04:00
|
|
|
test_streams.sh \
|
2002-06-15 09:12:05 +04:00
|
|
|
test_bins.sh
|
2001-07-22 11:27:45 +04:00
|
|
|
|
2001-07-19 03:42:07 +04:00
|
|
|
CLEANFILES = \
|
2002-08-30 09:39:36 +04:00
|
|
|
$(wildcard *.raw) \
|
|
|
|
$(wildcard *.flac) \
|
|
|
|
$(wildcard *.ogg) \
|
|
|
|
$(wildcard *.cmp) \
|
|
|
|
$(wildcard *.wav) \
|
2001-06-06 20:38:22 +04:00
|
|
|
$(wildcard ../../test_files/bins/*.raw) \
|
|
|
|
$(wildcard ../../test_files/bins/*.flac) \
|
|
|
|
$(wildcard ../../test_files/bins/*.cmp) \
|
2001-01-20 01:39:39 +03:00
|
|
|
$(wildcard *.log)
|