2001-06-08 00:13:21 +00:00
|
|
|
# metaflac - Command-line FLAC metadata editor
|
2003-01-02 07:03:16 +00:00
|
|
|
# Copyright (C) 2000,2001,2002,2003 Josh Coalson
|
2001-06-08 00:13:21 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
2001-02-23 21:38:26 +00:00
|
|
|
bin_PROGRAMS = metaflac
|
2002-10-16 22:06:04 +00:00
|
|
|
CFLAGS = @CFLAGS@
|
2001-02-23 21:38:26 +00:00
|
|
|
|
2002-07-09 06:27:07 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
|
Makefile.lite \
|
2002-10-16 22:06:04 +00:00
|
|
|
metaflac.dsp
|
2002-07-09 06:27:07 +00:00
|
|
|
|
2001-02-23 21:38:26 +00:00
|
|
|
metaflac_SOURCES = \
|
2002-11-08 05:37:43 +00:00
|
|
|
main.c \
|
|
|
|
|
operations.c \
|
2002-11-26 06:21:06 +00:00
|
|
|
operations_shorthand_cuesheet.c \
|
2002-11-08 05:37:43 +00:00
|
|
|
operations_shorthand_seektable.c \
|
|
|
|
|
operations_shorthand_streaminfo.c \
|
|
|
|
|
operations_shorthand_vorbiscomment.c \
|
|
|
|
|
options.c \
|
|
|
|
|
usage.c \
|
2002-12-03 06:30:14 +00:00
|
|
|
utils.c \
|
|
|
|
|
operations.h \
|
|
|
|
|
options.h \
|
|
|
|
|
usage.h \
|
|
|
|
|
utils.h
|
2001-02-23 23:10:57 +00:00
|
|
|
metaflac_LDFLAGS =
|
2002-05-17 06:26:02 +00:00
|
|
|
|
2002-12-03 06:30:14 +00:00
|
|
|
metaflac_LDADD = \
|
2003-02-07 02:43:02 +00:00
|
|
|
$(top_builddir)/src/share/grabbag/libgrabbag.la \
|
2003-12-17 04:51:06 +00:00
|
|
|
$(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \
|
2002-12-03 06:30:14 +00:00
|
|
|
$(top_builddir)/src/share/getopt/libgetopt.a \
|
2003-02-07 02:43:02 +00:00
|
|
|
$(top_builddir)/src/share/utf8/libutf8.la \
|
2002-12-03 06:30:14 +00:00
|
|
|
$(top_builddir)/src/libFLAC/libFLAC.la \
|
|
|
|
|
@LIBICONV@ \
|
|
|
|
|
-lm
|