Mercurial > audlegacy-plugins
annotate src/flacng/Makefile @ 1470:429b29e8004c
Add actual codec information to wav-sndfile tuple. Untested.
author | Tony Vroon <chainsaw@gentoo.org> |
---|---|
date | Sat, 11 Aug 2007 14:56:15 +0100 |
parents | 285d54073f12 |
children | 7c380a9b2fea |
rev | line source |
---|---|
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
1 include ../../mk/rules.mk |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
2 include ../../mk/init.mk |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
3 |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
4 OBJECTIVE_LIBS = libflacng$(SHARED_SUFFIX) |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
5 |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
6 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
7 |
1322
285d54073f12
Fix CFLAGS detection for 1.1.2 stuff.
William Pitcock <nenolod@atheme-project.org>
parents:
1246
diff
changeset
|
8 LIBADD = $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) $(LIBFLAC_LIBS) |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
9 |
1246 | 10 SOURCES = 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
|
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 |
1322
285d54073f12
Fix CFLAGS detection for 1.1.2 stuff.
William Pitcock <nenolod@atheme-project.org>
parents:
1246
diff
changeset
|
14 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../.. $(LIBFLAC_CFLAGS) -Wall |
930
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
15 |
2f742d127b3e
[svn] - initial import of flacng from audacious-flacng-0.012
nenolod
parents:
diff
changeset
|
16 include ../../mk/objective.mk |