Mercurial > audlegacy-plugins
annotate src/flac/Makefile @ 900:d985f0dcdeb0 trunk
[svn] - add a starting point for xmms-rootvis port. giacomo will need to
finish this up, as my XLib skills are not enough at this time.
| author | nenolod |
|---|---|
| date | Mon, 26 Mar 2007 01:19:26 -0700 |
| parents | f19e6748d8eb |
| children |
| rev | line source |
|---|---|
| 17 | 1 include ../../mk/rules.mk |
| 2 include ../../mk/init.mk | |
| 3 | |
| 715 | 4 SUBDIRS = libflac plugin_common |
| 17 | 5 |
| 6 noinst_HEADERS = \ | |
| 7 charset.h \ | |
| 8 configure.h \ | |
| 9 plugin.h \ | |
| 10 tag.h \ | |
| 11 fast_float_math_hack.h \ | |
| 12 replaygain_analysis.h \ | |
| 13 grabbag.h \ | |
| 14 replaygain_synthesis.h | |
| 15 | |
| 16 OBJECTIVE_LIBS = libflac$(SHARED_SUFFIX) | |
| 17 | |
| 18 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) | |
| 19 | |
|
726
d24c2d0fb60c
[svn] - depend on $(OGG_VORBIS_*) for debian's sake
nenolod
parents:
724
diff
changeset
|
20 LIBADD = $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) -L./libflac -L./plugin_common -laudflac -lplugin_common $(OGG_VORBIS_LIBS) |
| 17 | 21 |
| 22 SOURCES = \ | |
| 23 charset.c \ | |
| 24 configure.c \ | |
| 25 fileinfo.c \ | |
| 26 plugin.c \ | |
| 27 tag.c \ | |
| 28 replaygain_synthesis.c \ | |
| 29 replaygain.c \ | |
| 30 replaygain_analysis.c \ | |
| 31 file.c | |
| 32 | |
| 33 OBJECTS = ${SOURCES:.c=.o} | |
| 34 | |
| 894 | 35 LIBDEP = libflac/libaudflac.a plugin_common/libplugin_common.a |
| 36 | |
|
726
d24c2d0fb60c
[svn] - depend on $(OGG_VORBIS_*) for debian's sake
nenolod
parents:
724
diff
changeset
|
37 # XXX: debian |
|
d24c2d0fb60c
[svn] - depend on $(OGG_VORBIS_*) for debian's sake
nenolod
parents:
724
diff
changeset
|
38 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../.. -I./libflac $(OGG_VORBIS_CFLAGS) |
| 17 | 39 |
| 40 include ../../mk/objective.mk |
