comparison src/madplug/Makefile @ 1805:306fc97f2cce

Fix missing FLAGS and clean up.
author Jonathan Schleifer <js@h3c.de>
date Mon, 24 Sep 2007 19:51:17 +0200
parents cd28934add64
children 9ea88bd211c2
comparison
equal deleted inserted replaced
1802:877a36a055a3 1805:306fc97f2cce
1 PLUGIN = madplug${PLUGIN_SUFFIX}
2 SRCS = configure.c \
3 dither.c \
4 input.c \
5 replaygain.c \
6 decoder.c \
7 fileinfo.c \
8 plugin.c \
9 xing.c
10
11 plugindir = audacious/${INPUT_PLUGIN_DIR}
12
13 include ../../buildsys.mk
1 include ../../extra.mk 14 include ../../extra.mk
2 15
3 PLUGIN = madplug$(PLUGIN_SUFFIX) 16 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${DBUS_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} ${MOWGLI_CFLAGS} ${ARCH_DEFINES} -I../..
4 plugindir = audacious/$(INPUT_PLUGIN_DIR) 17 CFLAGS += ${PLUGIN_CFLAGS} ${SIMD_CFLAGS}
5 18 LIBS += -L${libdir} -laudid3tag -lmad ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS}
6 SRCS = \
7 configure.c \
8 dither.c \
9 input.c \
10 replaygain.c \
11 decoder.c \
12 fileinfo.c \
13 plugin.c \
14 xing.c
15
16 include ../../buildsys.mk
17
18 CFLAGS += $(PICFLAGS) $(SIMD_CFLAGS) -Wall
19 CPPFLAGS += $(DBUS_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(MOWGLI_CFLAGS) $(ARCH_DEFINES) -I../..
20 LIBS += -L/opt/local/lib -L$(libdir) -laudid3tag -lmad $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS)