Mercurial > audlegacy-plugins
comparison src/bluetooth/Makefile @ 2936:a5cb0e914df6
remove marshal.c and marshal.h; generate those during building instead
author | Tomasz Mon <desowin@gmail.com> |
---|---|
date | Wed, 17 Sep 2008 12:01:25 +0200 |
parents | acfa92d9ff5e |
children |
comparison
equal
deleted
inserted
replaced
2935:6f0eccec978e | 2936:a5cb0e914df6 |
---|---|
1 PLUGIN = bluetooth${PLUGIN_SUFFIX} | 1 PLUGIN = bluetooth${PLUGIN_SUFFIX} |
2 | 2 |
3 SRCS = bluetooth.c gui.c marshal.c scan_gui.c agent.c | 3 SRCS = bluetooth.c gui.c marshal.c scan_gui.c agent.c |
4 include ../../buildsys.mk | 4 include ../../buildsys.mk |
5 include ../../extra.mk | 5 include ../../extra.mk |
6 | |
7 pre-depend: marshal.h | |
8 | |
9 marshal.h: | |
10 glib-genmarshal --prefix=marshal --header marshal.list > $@ | |
11 marshal.c: | |
12 glib-genmarshal --prefix=marshal --body marshal.list > $@ | |
13 | |
6 plugindir := ${plugindir}/${GENERAL_PLUGIN_DIR} | 14 plugindir := ${plugindir}/${GENERAL_PLUGIN_DIR} |
7 CFLAGS += ${PLUGIN_CFLAGS} | 15 CFLAGS += ${PLUGIN_CFLAGS} |
8 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${BEEP_DEFINES} ${MOWGLI_CFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${DBUS_GLIB_CFLAGS} ${PANGO_CFLAGS} -I../../intl -I../.. ${BLUEZ_CFLAGS} | 16 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${BEEP_DEFINES} ${MOWGLI_CFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${DBUS_GLIB_CFLAGS} ${PANGO_CFLAGS} -I../../intl -I../.. ${BLUEZ_CFLAGS} |
9 LIBS += ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} ${BLUEZ_LIBS} | 17 LIBS += ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} ${BLUEZ_LIBS} |
10 | 18 |