annotate src/bluetooth/Makefile @ 3020:fdcf79446ddf

Port to new API, lowest prio and NO_DEVICES to avoid autoselect.
author Tony Vroon <chainsaw@gentoo.org>
date Thu, 09 Apr 2009 21:57:39 +0100
parents a5cb0e914df6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2644
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
diff changeset
1 PLUGIN = bluetooth${PLUGIN_SUFFIX}
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
diff changeset
2
2930
acfa92d9ff5e bluetooth headset plugin about box
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2867
diff changeset
3 SRCS = bluetooth.c gui.c marshal.c scan_gui.c agent.c
2644
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
diff changeset
4 include ../../buildsys.mk
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
diff changeset
5 include ../../extra.mk
2936
a5cb0e914df6 remove marshal.c and marshal.h; generate those during building instead
Tomasz Mon <desowin@gmail.com>
parents: 2930
diff changeset
6
a5cb0e914df6 remove marshal.c and marshal.h; generate those during building instead
Tomasz Mon <desowin@gmail.com>
parents: 2930
diff changeset
7 pre-depend: marshal.h
a5cb0e914df6 remove marshal.c and marshal.h; generate those during building instead
Tomasz Mon <desowin@gmail.com>
parents: 2930
diff changeset
8
a5cb0e914df6 remove marshal.c and marshal.h; generate those during building instead
Tomasz Mon <desowin@gmail.com>
parents: 2930
diff changeset
9 marshal.h:
a5cb0e914df6 remove marshal.c and marshal.h; generate those during building instead
Tomasz Mon <desowin@gmail.com>
parents: 2930
diff changeset
10 glib-genmarshal --prefix=marshal --header marshal.list > $@
a5cb0e914df6 remove marshal.c and marshal.h; generate those during building instead
Tomasz Mon <desowin@gmail.com>
parents: 2930
diff changeset
11 marshal.c:
a5cb0e914df6 remove marshal.c and marshal.h; generate those during building instead
Tomasz Mon <desowin@gmail.com>
parents: 2930
diff changeset
12 glib-genmarshal --prefix=marshal --body marshal.list > $@
a5cb0e914df6 remove marshal.c and marshal.h; generate those during building instead
Tomasz Mon <desowin@gmail.com>
parents: 2930
diff changeset
13
2644
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
diff changeset
14 plugindir := ${plugindir}/${GENERAL_PLUGIN_DIR}
2838
22a2ffe86750 added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2728
diff changeset
15 CFLAGS += ${PLUGIN_CFLAGS}
22a2ffe86750 added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2728
diff changeset
16 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${BEEP_DEFINES} ${MOWGLI_CFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${DBUS_GLIB_CFLAGS} ${PANGO_CFLAGS} -I../../intl -I../.. ${BLUEZ_CFLAGS}
22a2ffe86750 added passkey agent and basic pairing functionality
Paula Stanciu <paula.stanciu@gmail.com>
parents: 2728
diff changeset
17 LIBS += ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} ${BLUEZ_LIBS}
2644
6fd8ca4b7b17 add bluetooth plugin
Paula Stanciu <paula.stanciu@gmail.com>
parents:
diff changeset
18