Mercurial > audlegacy-plugins
annotate src/daap/Makefile @ 3191:a65f440cbed3
alsa-ng: Fix possible race conditions, sluggish pause and seek.
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Mon, 22 Jun 2009 16:05:57 -0400 |
parents | c42fa8f89616 |
children |
rev | line source |
---|---|
2018
03a2bb1c521e
Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2017
diff
changeset
|
1 PLUGIN = libdaap${PLUGIN_SUFFIX} |
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 = daap.c |
1407
776dd8fc2b38
DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff
changeset
|
4 |
776dd8fc2b38
DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff
changeset
|
5 SUBDIRS = xmms2-daap |
776dd8fc2b38
DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff
changeset
|
6 |
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
|
7 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
|
8 include ../../extra.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
|
9 |
2018
03a2bb1c521e
Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2017
diff
changeset
|
10 plugindir := ${plugindir}/${TRANSPORT_PLUGIN_DIR} |
1407
776dd8fc2b38
DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff
changeset
|
11 |
1450
69bff388b0f8
now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents:
1407
diff
changeset
|
12 #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
|
13 #MDNS_LIBS=-ldns_sd |
69bff388b0f8
now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents:
1407
diff
changeset
|
14 MDNS_LIBS=-lavahi-glib -lavahi-common -lavahi-client |
69bff388b0f8
now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents:
1407
diff
changeset
|
15 #MDNS_LIBS= |
69bff388b0f8
now it compiles
Cristi Magherusan <majeru@atheme-project.org>
parents:
1407
diff
changeset
|
16 |
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
|
17 INC = -I../.. -I./xmms2-daap |
57ee341c180f
Converted daap to the new buildsys. Even though it is not built currently. (???)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1450
diff
changeset
|
18 WARN = -Wall -pedantic -std=c99 |
1407
776dd8fc2b38
DAAP plugin (work in progress)
Cristi Magherusan <majeru@atheme-project.org>
parents:
diff
changeset
|
19 |
2018
03a2bb1c521e
Curly vs round braces (part 2)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2017
diff
changeset
|
20 CFLAGS += ${PLUGIN_CFLAGS} |
2524
c42fa8f89616
Remove -I../../intl and PANGO_{CFLAGS,LIBS} from those Makefiles where they are not needed (in practice almost all of them.)
Matti Hamalainen <ccr@tnsp.org>
parents:
2018
diff
changeset
|
21 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${PICFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${INC} ${WARN} ${GCC42_CFLAGS} |
c42fa8f89616
Remove -I../../intl and PANGO_{CFLAGS,LIBS} from those Makefiles where they are not needed (in practice almost all of them.)
Matti Hamalainen <ccr@tnsp.org>
parents:
2018
diff
changeset
|
22 LIBS += ${GTK_LIBS} ${GLIB_LIBS} ${MDNS_LIBS} ./xmms2-daap/xmms2-daap.a |