view src/libid3tag/Makefile @ 2532:9e135bfe457d trunk

[svn] - include stdio.h for debug print out. - suppress warnings.
author yaz
date Fri, 16 Feb 2007 04:21:17 -0800
parents b1ec2cbe0d0c
children 2c17b008a532
line wrap: on
line source

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

OBJECTIVE_LIBS = libaudid3tag.so

LIBDIR = $(plugindir)

LDFLAGS += -Wl,-export-dynamic

LIBADD += $(GLIB_LIBS)

CFLAGS += $(PICFLAGS) \
	-I.. \
	$(GLIB_CFLAGS) -Wall

HEADERS = id3tag.h

SOURCES = \
	compat.c \
	debug.c \
	file.c \
	frametype.c \
	latin1.c \
	render.c \
	ucs4.c \
	utf8.c \
	version.c \
	crc.c \
	field.c \
	frame.c \
	genre.c \
	parse.c \
	tag.c \
	utf16.c \
	util.c

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

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