Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 1 | # metaflac - Command-line FLAC metadata editor |
Josh Coalson | e74bd95 | 2007-02-02 06:58:19 +0000 | [diff] [blame] | 2 | # Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson |
Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 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 | |
Josh Coalson | 4d3b90f | 2001-02-23 21:38:26 +0000 | [diff] [blame] | 18 | bin_PROGRAMS = metaflac |
Josh Coalson | 4d3b90f | 2001-02-23 21:38:26 +0000 | [diff] [blame] | 19 | |
Josh Coalson | 8da98c8 | 2006-10-15 04:24:05 +0000 | [diff] [blame] | 20 | AM_CFLAGS = @OGG_CFLAGS@ |
| 21 | |
Josh Coalson | cd443f6 | 2002-07-09 06:27:07 +0000 | [diff] [blame] | 22 | EXTRA_DIST = \ |
| 23 | Makefile.lite \ |
Josh Coalson | fc70147 | 2002-10-16 22:06:04 +0000 | [diff] [blame] | 24 | metaflac.dsp |
Josh Coalson | cd443f6 | 2002-07-09 06:27:07 +0000 | [diff] [blame] | 25 | |
Josh Coalson | 4d3b90f | 2001-02-23 21:38:26 +0000 | [diff] [blame] | 26 | metaflac_SOURCES = \ |
Josh Coalson | 1786393 | 2002-11-08 05:37:43 +0000 | [diff] [blame] | 27 | main.c \ |
| 28 | operations.c \ |
Josh Coalson | 303123f | 2002-11-26 06:21:06 +0000 | [diff] [blame] | 29 | operations_shorthand_cuesheet.c \ |
Josh Coalson | b02574e | 2006-09-26 00:43:48 +0000 | [diff] [blame] | 30 | operations_shorthand_picture.c \ |
Josh Coalson | 1786393 | 2002-11-08 05:37:43 +0000 | [diff] [blame] | 31 | operations_shorthand_seektable.c \ |
| 32 | operations_shorthand_streaminfo.c \ |
| 33 | operations_shorthand_vorbiscomment.c \ |
| 34 | options.c \ |
| 35 | usage.c \ |
Josh Coalson | 1dca1c2 | 2002-12-03 06:30:14 +0000 | [diff] [blame] | 36 | utils.c \ |
| 37 | operations.h \ |
| 38 | options.h \ |
| 39 | usage.h \ |
| 40 | utils.h |
Josh Coalson | c91eca7 | 2001-02-23 23:10:57 +0000 | [diff] [blame] | 41 | metaflac_LDFLAGS = |
Josh Coalson | ae48af1 | 2002-05-17 06:26:02 +0000 | [diff] [blame] | 42 | |
Josh Coalson | 1dca1c2 | 2002-12-03 06:30:14 +0000 | [diff] [blame] | 43 | metaflac_LDADD = \ |
Matt Zimmerman | ca56e93 | 2003-02-07 02:43:02 +0000 | [diff] [blame] | 44 | $(top_builddir)/src/share/grabbag/libgrabbag.la \ |
Josh Coalson | 9c650a5 | 2003-12-17 04:51:06 +0000 | [diff] [blame] | 45 | $(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \ |
Josh Coalson | 1dca1c2 | 2002-12-03 06:30:14 +0000 | [diff] [blame] | 46 | $(top_builddir)/src/share/getopt/libgetopt.a \ |
Matt Zimmerman | ca56e93 | 2003-02-07 02:43:02 +0000 | [diff] [blame] | 47 | $(top_builddir)/src/share/utf8/libutf8.la \ |
Josh Coalson | 1dca1c2 | 2002-12-03 06:30:14 +0000 | [diff] [blame] | 48 | $(top_builddir)/src/libFLAC/libFLAC.la \ |
Josh Coalson | 8da98c8 | 2006-10-15 04:24:05 +0000 | [diff] [blame] | 49 | @OGG_LIBS@ \ |
Josh Coalson | 1dca1c2 | 2002-12-03 06:30:14 +0000 | [diff] [blame] | 50 | @LIBICONV@ \ |
| 51 | -lm |