view src/flac/plugin_common/Makefile @ 783:83a38bcfe7c8 trunk

[svn] - check the result of vfs_fread() strictly.
author yaz
date Mon, 05 Mar 2007 00:48:01 -0800
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