Mercurial > audlegacy-plugins
annotate src/bluetooth/Makefile @ 3160:2fa63d8ef645
cdaudio had lacked the last track.
| author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
|---|---|
| date | Sun, 24 May 2009 14:40:10 +0900 |
| parents | a5cb0e914df6 |
| children |
| rev | line source |
|---|---|
| 2644 | 1 PLUGIN = bluetooth${PLUGIN_SUFFIX} |
| 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 | 4 include ../../buildsys.mk |
| 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 | 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 | 18 |
