blob: 112f4547ff15d6b2300098299127d31fd0df940c [file] [log] [blame]
Josh Coalsonfda98fb2002-05-17 06:33:39 +00001# libFLAC++ - Free Lossless Audio Codec library
Josh Coalsonafae69f2003-01-02 07:03:16 +00002# Copyright (C) 2002,2003 Josh Coalson
Josh Coalsonfda98fb2002-05-17 06:33:39 +00003#
4# This library is free software; you can redistribute it and/or
5# modify it under the terms of the GNU Library General Public
6# License as published by the Free Software Foundation; either
7# version 2 of the License, or (at your option) any later version.
8#
9# This library is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12# Library General Public License for more details.
13#
14# You should have received a copy of the GNU Library General Public
15# License along with this library; if not, write to the
16# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17# Boston, MA 02111-1307, USA.
18
19lib_LTLIBRARIES = libFLAC++.la
Josh Coalson57ba6f42002-06-07 05:27:37 +000020CXXFLAGS = @CXXFLAGS@
Josh Coalsonfda98fb2002-05-17 06:33:39 +000021
Josh Coalsonbfeec742002-06-28 23:45:53 +000022m4datadir = $(datadir)/aclocal
23m4data_DATA = libFLAC++.m4
24
Josh Coalsoncd443f62002-07-09 06:27:07 +000025EXTRA_DIST = \
26 Makefile.lite \
27 Makefile.vc \
Josh Coalsonbfc8e312002-11-21 09:00:25 +000028 libFLAC++_dynamic.dsp \
29 libFLAC++_static.dsp \
Josh Coalsoncd443f62002-07-09 06:27:07 +000030 libFLAC++.m4
Josh Coalsonbfeec742002-06-28 23:45:53 +000031
Josh Coalson57ba6f42002-06-07 05:27:37 +000032# see 'http://www.gnu.org/software/libtool/manual.html#Versioning' for numbering convention
Josh Coalsonad017c62003-01-15 07:04:43 +000033libFLAC___la_LDFLAGS = -version-info 3:1:1
Josh Coalsonfda98fb2002-05-17 06:33:39 +000034
Josh Coalson57ba6f42002-06-07 05:27:37 +000035libFLAC___la_SOURCES = \
Josh Coalsonfc701472002-10-16 22:06:04 +000036 file_decoder.cpp \
37 file_encoder.cpp \
38 metadata.cpp \
39 seekable_stream_decoder.cpp \
40 seekable_stream_encoder.cpp \
41 stream_decoder.cpp \
42 stream_encoder.cpp