Mercurial > audlegacy-plugins
changeset 1805:306fc97f2cce
Fix missing FLAGS and clean up.
author | Jonathan Schleifer <js@h3c.de> |
---|---|
date | Mon, 24 Sep 2007 19:51:17 +0200 |
parents | 877a36a055a3 |
children | ec6c92d79a16 |
files | src/madplug/Makefile |
diffstat | 1 files changed, 16 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/src/madplug/Makefile Mon Sep 24 19:46:00 2007 +0200 +++ b/src/madplug/Makefile Mon Sep 24 19:51:17 2007 +0200 @@ -1,20 +1,18 @@ +PLUGIN = madplug${PLUGIN_SUFFIX} +SRCS = configure.c \ + dither.c \ + input.c \ + replaygain.c \ + decoder.c \ + fileinfo.c \ + plugin.c \ + xing.c + +plugindir = audacious/${INPUT_PLUGIN_DIR} + +include ../../buildsys.mk include ../../extra.mk -PLUGIN = madplug$(PLUGIN_SUFFIX) -plugindir = audacious/$(INPUT_PLUGIN_DIR) - -SRCS = \ - configure.c \ - dither.c \ - input.c \ - replaygain.c \ - decoder.c \ - fileinfo.c \ - plugin.c \ - xing.c - -include ../../buildsys.mk - -CFLAGS += $(PICFLAGS) $(SIMD_CFLAGS) -Wall -CPPFLAGS += $(DBUS_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(MOWGLI_CFLAGS) $(ARCH_DEFINES) -I../.. -LIBS += -L/opt/local/lib -L$(libdir) -laudid3tag -lmad $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) +CPPFLAGS += ${PLUGIN_CPPFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} ${MOWGLI_CFLAGS} ${ARCH_DEFINES} -I../.. +CFLAGS += ${PLUGIN_CFLAGS} ${SIMD_CFLAGS} +LIBS += -L${libdir} -laudid3tag -lmad ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS}