blob: 2f8345ed1cf5d6eae6050588e162c5b94d04ea94 [file] [log] [blame]
Josh Coalson6b05bc52001-06-08 00:13:21 +00001# metaflac - Command-line FLAC metadata editor
Josh Coalsone74bd952007-02-02 06:58:19 +00002# Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
Josh Coalson6b05bc52001-06-08 00:13:21 +00003#
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
Josh Coalson4d3b90f2001-02-23 21:38:26 +000018bin_PROGRAMS = metaflac
Josh Coalson4d3b90f2001-02-23 21:38:26 +000019
Josh Coalson8da98c82006-10-15 04:24:05 +000020AM_CFLAGS = @OGG_CFLAGS@
21
Josh Coalsoncd443f62002-07-09 06:27:07 +000022EXTRA_DIST = \
23 Makefile.lite \
Josh Coalsonfc701472002-10-16 22:06:04 +000024 metaflac.dsp
Josh Coalsoncd443f62002-07-09 06:27:07 +000025
Josh Coalson4d3b90f2001-02-23 21:38:26 +000026metaflac_SOURCES = \
Josh Coalson17863932002-11-08 05:37:43 +000027 main.c \
28 operations.c \
Josh Coalson303123f2002-11-26 06:21:06 +000029 operations_shorthand_cuesheet.c \
Josh Coalsonb02574e2006-09-26 00:43:48 +000030 operations_shorthand_picture.c \
Josh Coalson17863932002-11-08 05:37:43 +000031 operations_shorthand_seektable.c \
32 operations_shorthand_streaminfo.c \
33 operations_shorthand_vorbiscomment.c \
34 options.c \
35 usage.c \
Josh Coalson1dca1c22002-12-03 06:30:14 +000036 utils.c \
37 operations.h \
38 options.h \
39 usage.h \
40 utils.h
Josh Coalsonc91eca72001-02-23 23:10:57 +000041metaflac_LDFLAGS =
Josh Coalsonae48af12002-05-17 06:26:02 +000042
Josh Coalson1dca1c22002-12-03 06:30:14 +000043metaflac_LDADD = \
Matt Zimmermanca56e932003-02-07 02:43:02 +000044 $(top_builddir)/src/share/grabbag/libgrabbag.la \
Josh Coalson9c650a52003-12-17 04:51:06 +000045 $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \
Josh Coalson1dca1c22002-12-03 06:30:14 +000046 $(top_builddir)/src/share/getopt/libgetopt.a \
Matt Zimmermanca56e932003-02-07 02:43:02 +000047 $(top_builddir)/src/share/utf8/libutf8.la \
Josh Coalson1dca1c22002-12-03 06:30:14 +000048 $(top_builddir)/src/libFLAC/libFLAC.la \
Josh Coalson8da98c82006-10-15 04:24:05 +000049 @OGG_LIBS@ \
Josh Coalson1dca1c22002-12-03 06:30:14 +000050 @LIBICONV@ \
51 -lm