Mercurial > audlegacy
annotate src/libid3tag/Makefile @ 4011:c19c8d47e221
vseparator in fileinfo came back
| author | Eugene Zagidullin <e.asphyx@gmail.com> |
|---|---|
| date | Sun, 25 Nov 2007 04:44:40 +0300 |
| parents | fa3d2a62a066 |
| children | 9c40eb4bc22d |
| rev | line source |
|---|---|
| 3535 | 1 LIB = ${LIB_PREFIX}audid3tag${LIB_SUFFIX} |
|
3562
1caa559c5619
fix libid3tag installation.
William Pitcock <nenolod@atheme.org>
parents:
3535
diff
changeset
|
2 LIB_MAJOR = 1 |
|
1caa559c5619
fix libid3tag installation.
William Pitcock <nenolod@atheme.org>
parents:
3535
diff
changeset
|
3 LIB_MINOR = 0 |
|
1caa559c5619
fix libid3tag installation.
William Pitcock <nenolod@atheme.org>
parents:
3535
diff
changeset
|
4 |
| 3572 | 5 LIBDIR = ${plugindir} |
|
2503
10692383c103
[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.
yaz
parents:
diff
changeset
|
6 |
| 3535 | 7 INCLUDES = id3tag.h |
|
2503
10692383c103
[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.
yaz
parents:
diff
changeset
|
8 |
| 3572 | 9 SRCS = compat.c \ |
| 10 debug.c \ | |
| 11 file.c \ | |
| 12 frametype.c \ | |
| 13 latin1.c \ | |
| 14 render.c \ | |
| 15 ucs4.c \ | |
| 16 utf8.c \ | |
| 17 version.c \ | |
| 18 crc.c \ | |
| 19 field.c \ | |
| 20 frame.c \ | |
| 21 genre.c \ | |
| 22 parse.c \ | |
| 23 tag.c \ | |
| 24 utf16.c \ | |
| 25 util.c | |
|
2503
10692383c103
[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.
yaz
parents:
diff
changeset
|
26 |
| 3535 | 27 include ../../buildsys.mk |
| 3572 | 28 include ../../extra.mk |
|
2503
10692383c103
[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.
yaz
parents:
diff
changeset
|
29 |
|
3704
fa3d2a62a066
use vtable functors for VFS access
William Pitcock <nenolod@atheme.org>
parents:
3657
diff
changeset
|
30 CPPFLAGS += ${LIB_CPPFLAGS} -I.. ${GLIB_CFLAGS} ${GTK_CFLAGS} ${MOWGLI_CFLAGS} |
| 3572 | 31 CFLAGS += ${LIB_CFLAGS} |
|
3704
fa3d2a62a066
use vtable functors for VFS access
William Pitcock <nenolod@atheme.org>
parents:
3657
diff
changeset
|
32 LIBS += ${IMPLIB_LIBS} ${GLIB_LIBS} ${GTK_LIBS} ${MOWGLI_LIBS} -lz |
