Mercurial > audlegacy-plugins
annotate src/aosd/Makefile @ 2242:e8de4c4a3cac
branch merge
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Mon, 17 Dec 2007 22:05:31 +0900 |
parents | 6d33dffd1382 |
children | c42fa8f89616 |
rev | line source |
---|---|
1862
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
1 PLUGIN = aosd${PLUGIN_SUFFIX} |
2014
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
2 |
1862
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
3 SRCS = aosd.c \ |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
4 aosd_osd.c \ |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
5 aosd_style.c \ |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
6 aosd_trigger.c \ |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
7 aosd_ui.c \ |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
8 aosd_cfg.c \ |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
9 ghosd.c \ |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
10 ghosd-main.c |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
11 |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
12 include ../../buildsys.mk |
1794 | 13 include ../../extra.mk |
569
d401f87f89f7
[svn] - added Audacious OSD, yet-another-written-from-scratch plugin to display OSD, based on Ghosd library; currently untied from configure, to compile it you have to run make in its directory; will be added to configure after some testing
giacomo
parents:
diff
changeset
|
14 |
2017
6d33dffd1382
Curly vs round braces (part 1)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2014
diff
changeset
|
15 plugindir := ${plugindir}/${GENERAL_PLUGIN_DIR} |
2006
a56a26a5f233
Revised the plugindir logic.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1862
diff
changeset
|
16 |
2014
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
17 CFLAGS += ${PLUGIN_CFLAGS} |
1862
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
18 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} ${CAIRO_CFLAGS} ${PANGOCAIRO_CFLAGS} ${XRENDER_CFLAGS} ${XCOMPOSITE_CFLAGS} -I../../intl -I../.. -I.. |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1794
diff
changeset
|
19 LIBS += ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} ${CAIRO_LIBS} ${PANGOCAIRO_LIBS} ${XRENDER_LIBS} ${XCOMPOSITE_LIBS} |