view src/flac112/Makefile @ 611:3f7a52adfe0e trunk

[svn] merge recent changes from yaz's branch. - stable shoutcast playback. - tag handling improvement. - view track detail on streaming won't crash. (disabled.) - filepopup for streaming is partially supported. filepopup displays track name and stream name, but not updated automatically.
author yaz
date Tue, 06 Feb 2007 12:11:42 -0800
parents 550c9e382cf8
children
line wrap: on
line source

include ../../mk/rules.mk
include ../../mk/init.mk

SUBDIRS = plugin_common

noinst_HEADERS = \
	charset.h \
	configure.h \
	plugin.h \
	tag.h \
	fast_float_math_hack.h \
	replaygain_analysis.h \
	grabbag.h \
	replaygain_synthesis.h

OBJECTIVE_LIBS = libflac$(SHARED_SUFFIX)

LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR)

LIBADD = $(LIBFLAC_LIBS) $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) -L./plugin_common -lplugin_common

SOURCES = \
	charset.c \
	configure.c \
	fileinfo.c \
	plugin.c \
	tag.c \
	replaygain_synthesis.c \
	replaygain.c \
	replaygain_analysis.c \
	file.c

OBJECTS = ${SOURCES:.c=.o}

CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../.. $(LIBFLAC_CFLAGS)

include ../../mk/objective.mk