Mercurial > audlegacy
annotate Plugins/Input/flac/Makefile.am @ 295:65f2b5920a38 trunk
[svn] Do not discard pointer type qualifiers.
author | chainsaw |
---|---|
date | Fri, 16 Dec 2005 17:03:15 -0800 |
parents | 56074bfbb565 |
children |
rev | line source |
---|---|
61 | 1 # libxmms-flac - XMMS FLAC input plugin |
2 # Copyright (C) 2000,2001,2002,2003,2004,2005 Josh Coalson | |
3 # | |
4 # This program is free software; you can redistribute it and/or | |
5 # modify it under the terms of the GNU General Public License | |
6 # as published by the Free Software Foundation; either version 2 | |
7 # of the License, or (at your option) any later version. | |
8 # | |
9 # This program is distributed in the hope that it will be useful, | |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 # GNU General Public License for more details. | |
13 # | |
14 # You should have received a copy of the GNU General Public License | |
15 # along with this program; if not, write to the Free Software | |
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
17 | |
18 # | |
19 # GNU makefile | |
20 # | |
21 | |
75
56074bfbb565
[svn] Use the conitional HAVE_FLAC so we won't try to compile it if we shouldn't.
msameer
parents:
61
diff
changeset
|
22 if HAVE_FLAC |
61 | 23 SUBDIRS = plugin_common |
24 | |
25 noinst_HEADERS = \ | |
26 charset.h \ | |
27 configure.h \ | |
28 http.h \ | |
29 plugin.h \ | |
30 tag.h \ | |
31 fast_float_math_hack.h \ | |
32 replaygain_analysis.h \ | |
33 grabbag.h \ | |
34 replaygain_synthesis.h | |
35 | |
36 lib_LTLIBRARIES = libflac.la | |
75
56074bfbb565
[svn] Use the conitional HAVE_FLAC so we won't try to compile it if we shouldn't.
msameer
parents:
61
diff
changeset
|
37 endif |
61 | 38 |
39 libdir = $(plugindir)/$(INPUT_PLUGIN_DIR) | |
40 | |
41 libflac_la_LDFLAGS = @PLUGIN_LDFLAGS@ $(LIBFLAC_LIBS) -L./plugin_common -lplugin_common | |
42 | |
43 libflac_la_SOURCES = \ | |
44 charset.c \ | |
45 configure.c \ | |
46 fileinfo.c \ | |
47 http.c \ | |
48 plugin.c \ | |
49 tag.c \ | |
50 replaygain_synthesis.c \ | |
51 replaygain.c \ | |
52 replaygain_analysis.c \ | |
53 file.c | |
54 | |
55 INCLUDES = @GTK_CFLAGS@ -I$(top_builddir)/intl -I$(top_srcdir) $(LIBFLAC_CFLAGS) |