blob: 47a376589bfd36873ba1447f0e8d7bce2db669e1 [file] [log] [blame]
Josh Coalson4f4d9672004-10-29 23:57:50 +00001# plugin_common - Routines common to several plugins
Josh Coalsona78fac62005-01-25 04:17:55 +00002# Copyright (C) 2002,2003,2004,2005 Josh Coalson
Josh Coalson4f4d9672004-10-29 23:57:50 +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 Coalson1180f232002-08-23 06:28:59 +000018#
19# GNU makefile
20#
21
Josh Coalsoncd0e3222002-10-23 22:08:13 +000022topdir = ../..
23
Josh Coalson5e8e25d2002-09-04 07:56:44 +000024LIB_NAME = libplugin_common
Josh Coalsonb54ce2e2005-01-07 01:02:30 +000025INCLUDES = -I$(topdir)/include -I$(HOME)/local/include -I$(ICONV_INCLUDE_DIR)
Josh Coalsone31d9eb2004-09-28 00:23:57 +000026DEFINES =
Josh Coalson1180f232002-08-23 06:28:59 +000027
Josh Coalsonb74fc982002-11-20 06:40:08 +000028SRCS_C = \
Josh Coalsonb74fc982002-11-20 06:40:08 +000029 charset.c \
30 dither.c \
Josh Coalsonf8ffa1a2005-09-02 04:52:32 +000031 replaygain.c \
Josh Coalson81b3cae2004-12-30 01:09:53 +000032 tags.c
Josh Coalson1180f232002-08-23 06:28:59 +000033
Josh Coalsoncd0e3222002-10-23 22:08:13 +000034include $(topdir)/build/lib.mk
Josh Coalson1180f232002-08-23 06:28:59 +000035
36# DO NOT DELETE THIS LINE -- make depend depends on it.