view src/flac/plugin_common/Makefile @ 886:f2fde7b4dccd trunk

[svn] - statusicon: use function/define names that do not collide with gtk >= 2.10 internals (paranoia)
author giacomo
date Wed, 21 Mar 2007 07:15:43 -0700
parents 5f53309bb7d8
children f19e6748d8eb
line wrap: on
line source

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

CFLAGS += $(PICFLAGS) -I.. -I../../.. -I../libflac

OBJECTIVE_LIBS_NOINST = libplugin_common.a

noinst_HEADERS = \
	all.h \
	charset.h \
	defs.h \
	dither.h \
	locale_hack.h \
	tags.h \
	replaygain.h

SOURCES = \
	charset.c \
	dither.c \
	tags.c \
	replaygain.c

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

libplugin_common.a: $(OBJECTS)
	$(AR) cq $@ $(OBJECTS)

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