Mercurial > audlegacy
diff src/libid3tag/Makefile @ 2503:10692383c103 trunk
[svn] first try for libid3tag integration. this improved libid3tag supports vfs operations and is capable of adding id3v2 tag to files which doesn't have id3v2 tag ever.
author | yaz |
---|---|
date | Sun, 11 Feb 2007 05:19:07 -0800 |
parents | |
children | b1ec2cbe0d0c |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/libid3tag/Makefile Sun Feb 11 05:19:07 2007 -0800 @@ -0,0 +1,37 @@ +include ../../mk/rules.mk +include ../../mk/init.mk + +OBJECTIVE_LIBS = libid3tag.so + +LDFLAGS += -Wl,-export-dynamic + +LIBADD += $(GLIB_LIBS) + +CFLAGS += $(PICFLAGS) \ + -I.. \ + $(GLIB_CFLAGS) + +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