Mercurial > audlegacy-plugins
comparison src/OSS/Makefile @ 1862:d9d4b258fbf1
Millions of Makefile fixes. More to follow.
author | Jonathan Schleifer <js@h3c.de> |
---|---|
date | Mon, 24 Sep 2007 23:03:25 +0200 |
parents | cae98a7eef82 |
children | eed7c270e8dd |
comparison
equal
deleted
inserted
replaced
1861:cbcb6d2154bd | 1862:d9d4b258fbf1 |
---|---|
1 PLUGIN = OSS${PLUGIN_SUFFIX} | |
2 plugindir = audacious/${OUTPUT_PLUGIN_DIR} | |
3 | |
4 SRCS = OSS.c \ | |
5 mixer.c \ | |
6 about.c \ | |
7 configure.c \ | |
8 audio.c \ | |
9 init.c \ | |
10 convert.c | |
11 | |
12 include ../../buildsys.mk | |
1 include ../../extra.mk | 13 include ../../extra.mk |
2 | 14 |
3 PLUGIN = OSS$(SHARED_SUFFIX) | 15 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${OSS_CFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} -I../../intl -I../.. -I. |
4 plugindir = audacious/$(OUTPUT_PLUGIN_DIR) | 16 CFLAGS += ${PLUGIN_CFLAGS} |
5 | 17 LIBS += ${OSS_LIBS} ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} |
6 SRCS = OSS.c mixer.c about.c configure.c audio.c init.c convert.c | |
7 | |
8 include ../../buildsys.mk | |
9 | |
10 LIBS += $(OSS_LIBS) $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) | |
11 CFLAGS += $(PLUGIN_CFLAGS) | |
12 CPPFLAGS += $(PLUGIN_CPPFLAGS) $(MOWGLI_CFLAGS) $(OSS_CFLAGS) $(DBUS_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../.. -I. | |
13 |