view Plugins/Input/flac/Makefile.in @ 1615:e402e0217870 trunk

[svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
author yaz
date Mon, 04 Sep 2006 19:47:32 -0700
parents b2378031a53e
children 79891e2fd8a5
line wrap: on
line source

include ../../../mk/rules.mk
include ../../../mk/init.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)

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