2004-10-29 23:57:50 +00:00
|
|
|
# plugin_common - Routines common to several plugins
|
2009-01-07 07:31:28 +00:00
|
|
|
# Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
|
2004-10-29 23:57:50 +00:00
|
|
|
#
|
2006-11-20 06:46:07 +00:00
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
2004-10-29 23:57:50 +00:00
|
|
|
#
|
2006-11-20 06:46:07 +00:00
|
|
|
# This library is distributed in the hope that it will be useful,
|
2004-10-29 23:57:50 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-11-20 06:46:07 +00:00
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
# Lesser General Public License for more details.
|
2004-10-29 23:57:50 +00:00
|
|
|
#
|
2006-11-20 06:46:07 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-08-23 06:28:59 +00:00
|
|
|
|
2012-04-07 19:24:21 -03:00
|
|
|
AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
|
2002-08-23 06:28:59 +00:00
|
|
|
|
2003-02-07 02:43:02 +00:00
|
|
|
noinst_LTLIBRARIES = libplugin_common.la
|
2002-08-23 06:28:59 +00:00
|
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
|
all.h \
|
2002-08-27 05:36:09 +00:00
|
|
|
charset.h \
|
2002-11-01 04:27:46 +00:00
|
|
|
defs.h \
|
2002-08-27 05:36:09 +00:00
|
|
|
dither.h \
|
2005-09-02 04:52:32 +00:00
|
|
|
replaygain.h \
|
2004-12-30 01:09:53 +00:00
|
|
|
tags.h
|
2002-08-23 06:28:59 +00:00
|
|
|
|
2003-02-07 02:43:02 +00:00
|
|
|
libplugin_common_la_SOURCES = \
|
2002-08-27 05:36:09 +00:00
|
|
|
charset.c \
|
|
|
|
|
dither.c \
|
2005-09-02 04:52:32 +00:00
|
|
|
replaygain.c \
|
2004-12-30 01:09:53 +00:00
|
|
|
tags.c
|
2002-08-23 06:28:59 +00:00
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
|
Makefile.lite \
|
2002-10-16 22:06:04 +00:00
|
|
|
README \
|
2007-07-11 04:13:09 +00:00
|
|
|
plugin_common_static.dsp \
|
|
|
|
|
plugin_common_static.vcproj
|
2002-08-23 06:28:59 +00:00
|
|
|
|
|
|
|
|
debug:
|
|
|
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
|
|
|
|
|
|
profile:
|
|
|
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|