Mercurial > audlegacy-plugins
annotate src/flacng/Makefile @ 1778:7c380a9b2fea
flacng: Mk2
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 24 Sep 2007 11:37:27 -0500 |
parents | 285d54073f12 |
children | eed7c270e8dd |
rev | line source |
---|---|
1778 | 1 include ../../extra.mk |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
2 |
1778 | 3 PLUGIN = flacng$(SHARED_SUFFIX) |
4 plugindir = audacious/$(INPUT_PLUGIN_DIR) | |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
5 |
1778 | 6 SRCS = plugin.c tools.c seekable_stream_callbacks.c flac_compat112.c |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
7 |
1778 | 8 include ../../buildsys.mk |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
9 |
1778 | 10 LIBS += $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(LIBFLAC_LIBS) |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
11 |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
12 OBJECTS = ${SOURCES:.c=.o} |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
13 |
1778 | 14 CFLAGS += $(PLUGIN_CFLAGS) |
15 CPPFLAGS += $(MOWGLI_CFLAGS) $(DBUS_CFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../.. $(LIBFLAC_CFLAGS) -Wall |