Mercurial > audlegacy-plugins
diff 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 |
line wrap: on
line diff
--- a/src/OSS/Makefile Mon Sep 24 22:35:27 2007 +0200 +++ b/src/OSS/Makefile Mon Sep 24 23:03:25 2007 +0200 @@ -1,13 +1,17 @@ +PLUGIN = OSS${PLUGIN_SUFFIX} +plugindir = audacious/${OUTPUT_PLUGIN_DIR} + +SRCS = OSS.c \ + mixer.c \ + about.c \ + configure.c \ + audio.c \ + init.c \ + convert.c + +include ../../buildsys.mk include ../../extra.mk -PLUGIN = OSS$(SHARED_SUFFIX) -plugindir = audacious/$(OUTPUT_PLUGIN_DIR) - -SRCS = OSS.c mixer.c about.c configure.c audio.c init.c convert.c - -include ../../buildsys.mk - -LIBS += $(OSS_LIBS) $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) -CFLAGS += $(PLUGIN_CFLAGS) -CPPFLAGS += $(PLUGIN_CPPFLAGS) $(MOWGLI_CFLAGS) $(OSS_CFLAGS) $(DBUS_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../.. -I. - +CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${OSS_CFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} -I../../intl -I../.. -I. +CFLAGS += ${PLUGIN_CFLAGS} +LIBS += ${OSS_LIBS} ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS}
