Mercurial > audlegacy
annotate src/libid3tag/Makefile @ 4837:a2ae808cabb4
Add configdb entry "interface", and set default to "skinned".
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Sun, 05 Apr 2009 15:28:06 -0500 |
parents | 51aaee81d4f2 |
children | 54b4f7aaca24 |
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 |
4811
7bf7f83a217e
rename src/audacious src/audlegacy so that both audlegacy and audacious can coexist.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
4802
diff
changeset
|
30 #includesubdir = audacious |
4802
d834d2df8d7c
override includesibdir for compatibility.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
4444
diff
changeset
|
31 |
4812
a7b80f765d6f
moved libSAD.h to src/audlegacy for the path for header files.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
4811
diff
changeset
|
32 CPPFLAGS += ${LIB_CPPFLAGS} -I.. -I../libSAD ${GLIB_CFLAGS} ${GTK_CFLAGS} \ |
4444
db3a3f46a226
Okay, mf0102 was right .. but we need mcs >= 0.7 for this to actually work
Matti Hamalainen <ccr@tnsp.org>
parents:
4441
diff
changeset
|
33 ${MOWGLI_CFLAGS} ${LIBMCS_CFLAGS} |
db3a3f46a226
Okay, mf0102 was right .. but we need mcs >= 0.7 for this to actually work
Matti Hamalainen <ccr@tnsp.org>
parents:
4441
diff
changeset
|
34 |
3572 | 35 CFLAGS += ${LIB_CFLAGS} |
4821
51aaee81d4f2
remove redundant dependencies
Andrew O. Shadoura <bugzilla@tut.by>
parents:
4812
diff
changeset
|
36 LIBS += -lz |