Mercurial > audlegacy-plugins
annotate src/flac113/Makefile @ 626:d21c61c27373 trunk
[svn] - error code must be initialized.
author | yaz |
---|---|
date | Fri, 09 Feb 2007 20:38:32 -0800 |
parents | 550c9e382cf8 |
children | a9b178bc4ae4 |
rev | line source |
---|---|
17 | 1 include ../../mk/rules.mk |
2 include ../../mk/init.mk | |
3 | |
4 SUBDIRS = plugin_common | |
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 | |
578
550c9e382cf8
[svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents:
516
diff
changeset
|
20 LIBADD = $(LIBFLAC_LIBS) $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) -L./plugin_common -lplugin_common |
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 | |
578
550c9e382cf8
[svn] - splitted GTK_CFLAGS in GTK_CFLAGS, GLIB_CFLAGS and PANGO_CFLAGS, splitted GTK_LIBS in GTK_LIBS, GLIB_LIBS, PANGO_LIBS
giacomo
parents:
516
diff
changeset
|
35 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) -I../../intl -I../.. $(LIBFLAC_CFLAGS) |
17 | 36 |
37 include ../../mk/objective.mk |