blob: 41c150cf17ab7599a6cde983dba7883825ee25d4 [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001# libxmms-flac - XMMS FLAC input plugin
Josh Coalsona78fac62005-01-25 04:17:55 +00002# Copyright (C) 2000,2001,2002,2003,2004,2005 Josh Coalson
Josh Coalson6b05bc52001-06-08 00:13:21 +00003#
4# This program is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License
6# as published by the Free Software Foundation; either version 2
7# of the License, or (at your option) any later version.
8#
9# This program 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
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000018#
19# GNU makefile
20#
21
Josh Coalsoncd0e3222002-10-23 22:08:13 +000022topdir = ../..
23
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000024LIB_NAME = libxmms-flac
Josh Coalsoncd0e3222002-10-23 22:08:13 +000025INCLUDES = $(shell xmms-config --cflags) -I./include -I$(topdir)/include -I..
Josh Coalsonb74fc982002-11-20 06:40:08 +000026# refer to the static libs explicitly
Josh Coalson1c008512005-02-02 05:50:26 +000027LIBS = $(topdir)/obj/$(BUILD)/lib/libFLAC.a $(topdir)/obj/$(BUILD)/lib/libplugin_common.a $(topdir)/obj/$(BUILD)/lib/libgrabbag.a $(topdir)/obj/$(BUILD)/lib/libreplaygain_analysis.a $(topdir)/obj/$(BUILD)/lib/libreplaygain_synthesis.a -L$(ICONV_LIB_DIR) -liconv -lstdc++ -lz
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000028
Josh Coalsonb74fc982002-11-20 06:40:08 +000029SRCS_C = \
30 charset.c \
31 configure.c \
32 plugin.c \
33 fileinfo.c \
Josh Coalsonc99aa822004-10-07 00:23:51 +000034 http.c \
Josh Coalsone31d9eb2004-09-28 00:23:57 +000035 tag.c
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000036
Josh Coalsoncd0e3222002-10-23 22:08:13 +000037include $(topdir)/build/lib.mk
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000038
39# DO NOT DELETE THIS LINE -- make depend depends on it.