Mercurial > audlegacy
view src/libid3tag/Makefile @ 2636:517d13842fe7 trunk
[svn] improve support for static playlist.
- Playlist.attribute has been introduced. if loading playlist file is marked as static playlist, this value would be set.
- now user can specify whether save as a static playlist or not.
- thanks to Playlist.attribute, meaningful mtime in a static playlist will be preserved.
author | yaz |
---|---|
date | Wed, 21 Mar 2007 02:13:02 -0700 |
parents | 9e135bfe457d |
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