Mercurial > audlegacy
annotate src/libaudclient/Makefile @ 3537:b9ac146e3006 trunk
aesthetic cleanups
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 17 Sep 2007 13:17:50 -0500 |
parents | 9ddf21ab5c84 |
children | 625af2797f35 |
rev | line source |
---|---|
3535 | 1 include ../../extra.mk |
2711
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
2 |
3535 | 3 LIB = ${LIB_PREFIX}audclient${LIB_SUFFIX} |
4 LIB_MAJOR = 1 | |
5 LIB_MINOR = 0 | |
6 | |
7 SRCS = audctrl.c | |
2711
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
8 |
3535 | 9 INCLUDES = audctrl.h |
10 | |
11 include ../../buildsys.mk | |
2711
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
12 |
3535 | 13 depend-hook: |
14 cd ../audacious; make dbus-client-bindings.h | |
15 | |
16 LIBS += \ | |
17 $(GLIB_LIBS) \ | |
2711
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
18 $(DBUS_LIBS) \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
19 $(MOWGLI_LIBS) \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
20 $(GCONF_LIBS) \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
21 $(LIBMCS_LIBS) |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
22 |
3535 | 23 CFLAGS += $(LIB_CFLAGS) \ |
2711
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
24 $(MOWGLI_CFLAGS) \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
25 $(GTK_CFLAGS) \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
26 $(GCONF_CFLAGS) \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
27 $(DBUS_CFLAGS) \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
28 $(LIBMCS_CFLAGS) \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
29 -D_AUDACIOUS_CORE \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
30 -I.. -I../.. \ |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
31 -I../intl |
c35913222440
[svn] Initial commit of dbus client library for plugins. Various changes were made to the plugin structure to support dbus.
magma
parents:
diff
changeset
|
32 |
3535 | 33 CPPFLAGS = ${CFLAGS} |