Mercurial > audlegacy-plugins
annotate src/OSS/Makefile @ 3085:ac0af6b39272
Introduce new GIO plugin to buildsystem. stdio is now deprecated.
Thoughts:
- getc()/ungetc() should be moved to VFS core now
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Wed, 29 Apr 2009 20:58:36 -0500 |
parents | 87c4bc8e8ec6 |
children |
rev | line source |
---|---|
1862
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1799
diff
changeset
|
1 PLUGIN = OSS${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:
1799
diff
changeset
|
3 SRCS = OSS.c \ |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1799
diff
changeset
|
4 mixer.c \ |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1799
diff
changeset
|
5 configure.c \ |
2696
87c4bc8e8ec6
Remove legacy audio format conversion from OSS plugin. Core aka libSAD
Matti Hamalainen <ccr@tnsp.org>
parents:
2691
diff
changeset
|
6 audio.c |
1862
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1799
diff
changeset
|
7 |
d9d4b258fbf1
Millions of Makefile fixes. More to follow.
Jonathan Schleifer <js@h3c.de>
parents:
1799
diff
changeset
|
8 include ../../buildsys.mk |
1799 | 9 include ../../extra.mk |
17 | 10 |
2017
6d33dffd1382
Curly vs round braces (part 1)
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2014
diff
changeset
|
11 plugindir := ${plugindir}/${OUTPUT_PLUGIN_DIR} |
2006
a56a26a5f233
Revised the plugindir logic.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
1882
diff
changeset
|
12 |
2014
1ad002ce1bd0
Just a tiny cleanup.
Eugene Paskevich <eugene@raptor.kiev.ua>
parents:
2006
diff
changeset
|
13 CFLAGS += ${PLUGIN_CFLAGS} |
2528
134deb25be83
Remove DBUS_CFLAGS and DBUS_LIBS from Makefiles that don't need them.
Matti Hamalainen <ccr@tnsp.org>
parents:
2524
diff
changeset
|
14 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${OSS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} -I../.. -I. |
2524
c42fa8f89616
Remove -I../../intl and PANGO_{CFLAGS,LIBS} from those Makefiles where they are not needed (in practice almost all of them.)
Matti Hamalainen <ccr@tnsp.org>
parents:
2017
diff
changeset
|
15 LIBS += ${OSS_LIBS} ${GTK_LIBS} ${GLIB_LIBS} |