Mercurial > audlegacy-plugins
annotate src/daap/xmms2-daap/Makefile @ 3080:1f13c07c4d80
aac: report stream bitrate if available
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 27 Apr 2009 05:45:43 -0500 |
parents | 03a2bb1c521e |
children |
rev | line source |
---|---|
2007
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
1 STATIC_LIB_NOINST = xmms2-daap.a |
1407
776dd8fc2b38
DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff
changeset
|
2 |
2007
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
3 SRCS = cc_handlers.c \ |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
4 daap_conn.c \ |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
5 daap_cmd.c \ |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
6 daap_md5.c \ |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
7 daap_util.c \ |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
8 daap_mdns_dnssd.c \ |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
9 daap_mdns_avahi.c \ |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
10 daap_mdns_dummy.c |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
11 # daap_xform.c |
1407
776dd8fc2b38
DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff
changeset
|
12 |
2007
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
13 include ../../../buildsys.mk |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
14 include ../../../extra.mk |
1407
776dd8fc2b38
DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff
changeset
|
15 |
1450
69bff388b0f8
now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents:
1407
diff
changeset
|
16 #For the moment i'm hardcoding it but it will be configurable |
69bff388b0f8
now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents:
1407
diff
changeset
|
17 #MDNS_IMPL=DAAP_MDNS_DNSSD |
69bff388b0f8
now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents:
1407
diff
changeset
|
18 MDNS_IMPL=DAAP_MDNS_AVAHI |
69bff388b0f8
now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents:
1407
diff
changeset
|
19 #MDNS_IMPL=DAAP_MDNS_DUMMY |
1407
776dd8fc2b38
DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff
changeset
|
20 |
2007
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
21 WARN = -Wall -std=c99 |
2018
03a2bb1c521e
Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2007
diff
changeset
|
22 DEFINES = -D${MDNS_IMPL} -D_POSIX_SOURCE |
1450
69bff388b0f8
now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents:
1407
diff
changeset
|
23 |
2018
03a2bb1c521e
Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2007
diff
changeset
|
24 CFLAGS += ${PLUGIN_CFLAGS} |
03a2bb1c521e
Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2007
diff
changeset
|
25 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${GLIB_CFLAGS} ${PICFLAGS} ${WARN} ${DEFINES} |
03a2bb1c521e
Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2007
diff
changeset
|
26 LIBS += ${GLIB_LIBS} |