Mercurial > audlegacy-plugins
comparison src/audiocompress/Makefile @ 1811:3e2480ad8cfc
Automated merge with ssh://hg.atheme.org//hg/audacious-plugins
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 24 Sep 2007 13:00:53 -0500 |
parents | f1b594fa80ce 7de4914cd8c8 |
children |
comparison
equal
deleted
inserted
replaced
1810:f1b594fa80ce | 1811:3e2480ad8cfc |
---|---|
1 PLUGIN = audiocompress${PLUGIN_SUFFIX} | |
2 SRCS = compress.c \ | |
3 audacious-glue.c | |
4 | |
5 plugindir = audacious/${EFFECT_PLUGIN_DIR} | |
6 | |
7 include ../../buildsys.mk | |
1 include ../../extra.mk | 8 include ../../extra.mk |
2 | 9 |
3 PLUGIN = audiocompress$(SHARED_SUFFIX) | 10 CPPFLAGS += ${PLUGIN_CPPFLAGS} ${MOWGLI_CFLAGS} ${GTK_CFLAGS} ${GLIB_CFLAGS} ${PANGO_CFLAGS} -I../../intl -I../.. |
4 plugindir = audacious/$(EFFECT_PLUGIN_DIR) | 11 CFLAGS += ${PLUGIN_CFLAGS} |
5 | 12 LIBADD = ${GTK_LIBS} ${GLIB_LIBS} ${PANGO_LIBS} |
6 SRCS = compress.c audacious-glue.c | |
7 | |
8 include ../../buildsys.mk | |
9 | |
10 CFLAGS += $(PLUGIN_CFLAGS) | |
11 CPPFLAGS += $(PLUGIN_CPPFLAGS) $(MOWGLI_CFLAGS) $(DBUS_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../.. | |
12 LIBS += $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) | |
13 |