src/libFLAC/stream_decoder.c : Fix buffer read overflow.
[platform/upstream/flac.git] / src / plugin_xmms / Makefile.lite
1 #  libxmms-flac - XMMS FLAC input plugin
2 #  Copyright (C) 2000-2009  Josh Coalson
3 #  Copyright (C) 2011-2013  Xiph.Org Foundation
4 #
5 #  This program is free software; you can redistribute it and/or
6 #  modify it under the terms of the GNU General Public License
7 #  as published by the Free Software Foundation; either version 2
8 #  of the License, or (at your option) any later version.
9 #
10 #  This program is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #  GNU General Public License for more details.
14 #
15 #  You should have received a copy of the GNU General Public License along
16 #  with this program; if not, write to the Free Software Foundation, Inc.,
17 #  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19 #
20 # GNU makefile
21 #
22
23 topdir = ../..
24 libdir = $(topdir)/objs/$(BUILD)/lib
25
26 LIB_NAME  = libxmms-flac
27 INCLUDES  = -I./include -I$(topdir)/include -I.. $(shell xmms-config --cflags)
28 # refer to the static libs explicitly
29 ifeq ($(OS),Darwin)
30     LIBS = $(libdir)/libFLAC.a $(libdir)/libplugin_common.a $(libdir)/libgrabbag.a $(libdir)/libreplaygain_analysis.a $(libdir)/libreplaygain_synthesis.a $(OGG_EXPLICIT_LIBS) $(ICONV_LIBS) -lm -lstdc++ -lz
31 else
32     LIBS = $(libdir)/libFLAC.a $(libdir)/libplugin_common.a $(libdir)/libgrabbag.a $(libdir)/libreplaygain_analysis.a $(libdir)/libreplaygain_synthesis.a $(OGG_LIBS) -lm -lsupc++ -lz
33 endif
34
35 SRCS_C = \
36         charset.c \
37         configure.c \
38         plugin.c \
39         fileinfo.c \
40         http.c \
41         tag.c
42
43 include $(topdir)/build/lib.mk
44
45 # DO NOT DELETE THIS LINE -- make depend depends on it.