Mercurial > audlegacy
annotate src/libid3tag/Makefile @ 3572:625af2797f35 trunk
Clean up Makefiles.
author | Jonathan Schleifer <js@h3c.de> |
---|---|
date | Wed, 19 Sep 2007 17:32:47 +0200 |
parents | 1caa559c5619 |
children | bbd1f39e5377 |
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 |
3572 | 30 CPPFLAGS += ${LIB_CPPFLAGS} -I.. ${GLIB_CFLAGS} |
31 CFLAGS += ${LIB_CFLAGS} | |
32 LIBS += ${GLIB_LIBS} |