changeset 590:5065078fabc4 trunk

[svn] flac conversion
author nenolod
date Thu, 02 Feb 2006 18:33:24 -0800
parents eb704fd2096b
children c447826497ce
files Plugins/Input/flac/Makefile.am Plugins/Input/flac/Makefile.in Plugins/Input/flac/plugin_common/Makefile.am Plugins/Input/flac/plugin_common/Makefile.in
diffstat 4 files changed, 58 insertions(+), 101 deletions(-) [+]
line wrap: on
line diff
--- a/Plugins/Input/flac/Makefile.am	Thu Feb 02 18:28:19 2006 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,55 +0,0 @@
-#  libxmms-flac - XMMS FLAC input plugin
-#  Copyright (C) 2000,2001,2002,2003,2004,2005  Josh Coalson
-#
-#  This program is free software; you can redistribute it and/or
-#  modify it under the terms of the GNU General Public License
-#  as published by the Free Software Foundation; either version 2
-#  of the License, or (at your option) any later version.
-#
-#  This program is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#  GNU General Public License for more details.
-#
-#  You should have received a copy of the GNU General Public License
-#  along with this program; if not, write to the Free Software
-#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-#
-# GNU makefile
-#
-
-if HAVE_FLAC
-SUBDIRS = plugin_common
-
-noinst_HEADERS = \
-	charset.h \
-	configure.h \
-	http.h \
-	plugin.h \
-	tag.h \
-	fast_float_math_hack.h \
-	replaygain_analysis.h \
-	grabbag.h \
-	replaygain_synthesis.h
-
-lib_LTLIBRARIES = libflac.la
-endif
-
-libdir = $(plugindir)/$(INPUT_PLUGIN_DIR)
-
-libflac_la_LDFLAGS = @PLUGIN_LDFLAGS@ $(LIBFLAC_LIBS)  -L./plugin_common -lplugin_common
-
-libflac_la_SOURCES = \
-	charset.c \
-	configure.c \
-	fileinfo.c \
-	http.c \
-	plugin.c \
-	tag.c \
-	replaygain_synthesis.c \
-	replaygain.c \
-	replaygain_analysis.c \
-	file.c
-
-INCLUDES = @GTK_CFLAGS@ -I$(top_builddir)/intl -I$(top_srcdir) $(LIBFLAC_CFLAGS)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Plugins/Input/flac/Makefile.in	Thu Feb 02 18:33:24 2006 -0800
@@ -0,0 +1,37 @@
+include ../../../rules.mk
+include ../../../objective.mk
+
+SUBDIRS = plugin_common
+
+noinst_HEADERS = \
+	charset.h \
+	configure.h \
+	http.h \
+	plugin.h \
+	tag.h \
+	fast_float_math_hack.h \
+	replaygain_analysis.h \
+	grabbag.h \
+	replaygain_synthesis.h
+
+OBJECTIVE_LIBS = libflac.so
+
+LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)
+
+LIBADD = $(LIBFLAC_LIBS)  -L./plugin_common -lplugin_common
+
+SOURCES = \
+	charset.c \
+	configure.c \
+	fileinfo.c \
+	http.c \
+	plugin.c \
+	tag.c \
+	replaygain_synthesis.c \
+	replaygain.c \
+	replaygain_analysis.c \
+	file.c
+
+OBJECTS = ${SOURCES:.c=.o}
+
+CFLAGS += -fPIC -DPIC $(GTK_CFLAGS) -I../../../intl -I../../.. $(LIBFLAC_CFLAGS)
--- a/Plugins/Input/flac/plugin_common/Makefile.am	Thu Feb 02 18:28:19 2006 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,46 +0,0 @@
-#  plugin_common - Routines common to several plugins
-#  Copyright (C) 2002,2003,2004,2005  Josh Coalson
-#
-#  This program is free software; you can redistribute it and/or
-#  modify it under the terms of the GNU General Public License
-#  as published by the Free Software Foundation; either version 2
-#  of the License, or (at your option) any later version.
-#
-#  This program is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#  GNU General Public License for more details.
-#
-#  You should have received a copy of the GNU General Public License
-#  along with this program; if not, write to the Free Software
-#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-
-AUTOMAKE_OPTIONS = foreign
-
-INCLUDES = -I$(top_srcdir)/include
-
-noinst_LTLIBRARIES = libplugin_common.la
-
-noinst_HEADERS = \
-	all.h \
-	charset.h \
-	defs.h \
-	dither.h \
-	locale_hack.h \
-	tags.h
-
-libplugin_common_la_SOURCES = \
-	charset.c \
-	dither.c \
-	tags.c
-
-EXTRA_DIST = \
-	Makefile.lite \
-	README \
-	plugin_common_static.dsp
-
-debug:
-	$(MAKE) all CFLAGS="@DEBUG@"
-
-profile:
-	$(MAKE) all CFLAGS="@PROFILE@"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Plugins/Input/flac/plugin_common/Makefile.in	Thu Feb 02 18:33:24 2006 -0800
@@ -0,0 +1,21 @@
+include ../../../../rules.mk
+include ../../../../objective.mk
+
+CFLAGS += -fPIC -DPIC -I..
+
+OBJECTIVE_LIBS_NOINST = libplugin_common.a
+
+noinst_HEADERS = \
+	all.h \
+	charset.h \
+	defs.h \
+	dither.h \
+	locale_hack.h \
+	tags.h
+
+SOURCES = \
+	charset.c \
+	dither.c \
+	tags.c
+
+OBJECTS = ${SOURCES:.c=.o}