2002-06-07 05:27:37 +00:00
|
|
|
# test_libFLAC - Unit tester for libFLAC
|
2003-01-02 07:03:16 +00:00
|
|
|
# Copyright (C) 2000,2001,2002,2003 Josh Coalson
|
2001-06-08 00:13:21 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; 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-07-09 06:27:07 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
|
Makefile.lite \
|
2002-10-16 22:06:04 +00:00
|
|
|
Makefile.vc \
|
|
|
|
|
test_libFLAC.dsp
|
2002-07-09 06:27:07 +00:00
|
|
|
|
2002-10-16 22:06:04 +00:00
|
|
|
CFLAGS = @CFLAGS@
|
2001-01-19 22:39:39 +00:00
|
|
|
INCLUDES = -I$(top_srcdir)/src/libFLAC/include
|
|
|
|
|
|
2002-06-07 05:27:37 +00:00
|
|
|
noinst_PROGRAMS = test_libFLAC
|
2002-11-07 05:07:30 +00:00
|
|
|
test_libFLAC_LDADD = \
|
2002-11-14 04:53:47 +00:00
|
|
|
$(top_builddir)/src/share/grabbag/libgrabbag.a \
|
2002-12-04 06:57:38 +00:00
|
|
|
$(top_builddir)/src/share/gain_analysis/libgain_analysis.a \
|
2002-11-07 05:07:30 +00:00
|
|
|
$(top_builddir)/src/libFLAC/libFLAC.la \
|
|
|
|
|
-lm
|
2002-06-07 05:27:37 +00:00
|
|
|
test_libFLAC_SOURCES = \
|
2001-01-19 22:39:39 +00:00
|
|
|
bitbuffer.c \
|
2002-05-31 06:27:05 +00:00
|
|
|
decoders.c \
|
2002-06-07 05:27:37 +00:00
|
|
|
encoders.c \
|
2002-05-17 06:27:19 +00:00
|
|
|
file_utils.c \
|
2002-05-09 05:47:41 +00:00
|
|
|
main.c \
|
2002-05-04 17:43:16 +00:00
|
|
|
metadata.c \
|
2002-05-07 05:33:49 +00:00
|
|
|
metadata_manip.c \
|
|
|
|
|
metadata_object.c \
|
2002-05-09 05:47:41 +00:00
|
|
|
metadata_utils.c \
|
2002-05-04 17:43:16 +00:00
|
|
|
bitbuffer.h \
|
2002-05-31 06:27:05 +00:00
|
|
|
decoders.h \
|
2002-06-07 05:27:37 +00:00
|
|
|
encoders.h \
|
2002-05-31 06:27:05 +00:00
|
|
|
file_utils.h \
|
|
|
|
|
metadata.h \
|
|
|
|
|
metadata_utils.h
|