Mercurial > audlegacy
annotate src/libaudutil/Makefile @ 4608:23a9ded30c70
Use str_assert_utf8() where it makes sense in the core.
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Wed, 04 Jun 2008 23:30:29 +0300 |
parents | 5586782f9dfe |
children | d834d2df8d7c |
rev | line source |
---|---|
4570
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
1 LIB = ${LIB_PREFIX}audutil${LIB_SUFFIX} |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
2 LIB_MAJOR = 1 |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
3 LIB_MINOR = 0 |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
4 |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
5 SRCS = md5.c |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
6 |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
7 INCLUDES = audutil.h |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
8 |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
9 include ../../buildsys.mk |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
10 include ../../extra.mk |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
11 |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
12 CPPFLAGS = ${LIB_CPPFLAGS} ${CFLAGS} -D_AUDACIOUS_CORE -I.. -I../.. |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
13 CFLAGS += ${LIB_CFLAGS} ${GLIB_CFLAGS} ${MOWGLI_CFLAGS} |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
14 |
5586782f9dfe
Added libaudutil for functionality that does not fit into plugin API, but
Matti Hamalainen <ccr@tnsp.org>
parents:
diff
changeset
|
15 LIBS += ${GLIB_LIBS} ${MOWGLI_LIBS} |