annotate src/stdio/Makefile @ 1870:2a5ee6ed598d
console: Remove useless #include and related useless DBUS deps from Makefile; Fixed
Makefile to actually build the plugin correctly.
| author |
Matti Hamalainen <ccr@tnsp.org> |
| date |
Tue, 25 Sep 2007 18:16:25 +0300 |
| parents |
b900277e18ec |
| children |
eed7c270e8dd |
| rev |
line source |
|
1843
|
1 PLUGIN = stdio$(PLUGIN_SUFFIX)
|
|
|
2 plugindir = audacious/$(TRANSPORT_PLUGIN_DIR)
|
|
306
|
3
|
|
1843
|
4 SRCS = stdio.c
|
|
306
|
5
|
|
1843
|
6 include ../../buildsys.mk
|
|
|
7 include ../../extra.mk
|
|
306
|
8
|
|
1843
|
9 CFLAGS += $(PLUGIN_CFLAGS)
|
|
|
10 CPPFLAGS += $(PLUGIN_CPPFLAGS) $(MOWGLI_CFLAGS) $(DBUS_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) $(XML_CPPFLAGS) \
|
|
|
11 -I../../intl -I../.. -Wall
|
|
|
12 LIBS += $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(XML_LIBS)
|