Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 1 | # metaflac - Command-line FLAC metadata editor |
Erik de Castro Lopo | b1982fb | 2013-05-25 17:11:19 +1000 | [diff] [blame] | 2 | # Copyright (C) 2000-2009 Josh Coalson |
| 3 | # Copyright (C) 2011-2013 Xiph.Org Foundation |
Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 4 | # |
| 5 | # This program is free software; you can redistribute it and/or |
| 6 | # modify it under the terms of the GNU General Public License |
| 7 | # as published by the Free Software Foundation; either version 2 |
| 8 | # of the License, or (at your option) any later version. |
| 9 | # |
| 10 | # This program is distributed in the hope that it will be useful, |
| 11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | # GNU General Public License for more details. |
| 14 | # |
Miroslav Lichvar | 6a1f59b | 2012-12-04 17:36:05 +0100 | [diff] [blame] | 15 | # You should have received a copy of the GNU General Public License along |
| 16 | # with this program; if not, write to the Free Software Foundation, Inc., |
| 17 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 18 | |
Josh Coalson | 4d3b90f | 2001-02-23 21:38:26 +0000 | [diff] [blame] | 19 | # |
| 20 | # GNU makefile |
| 21 | # |
| 22 | |
Josh Coalson | cd0e322 | 2002-10-23 22:08:13 +0000 | [diff] [blame] | 23 | topdir = ../.. |
Erik de Castro Lopo | 85d5c53 | 2013-01-02 22:37:42 +1100 | [diff] [blame] | 24 | libdir = $(topdir)/objs/$(BUILD)/lib |
Josh Coalson | cd0e322 | 2002-10-23 22:08:13 +0000 | [diff] [blame] | 25 | |
Josh Coalson | 4d3b90f | 2001-02-23 21:38:26 +0000 | [diff] [blame] | 26 | PROGRAM_NAME = metaflac |
Josh Coalson | 2757af6 | 2004-10-30 00:03:21 +0000 | [diff] [blame] | 27 | |
Hendricks266 | 96d081c | 2012-12-29 04:22:59 -0600 | [diff] [blame] | 28 | INCLUDES = -I./include -I$(topdir)/include $(OGG_INCLUDES) |
Josh Coalson | 2757af6 | 2004-10-30 00:03:21 +0000 | [diff] [blame] | 29 | |
Josh Coalson | c10f978 | 2008-09-14 19:59:52 +0000 | [diff] [blame] | 30 | ifeq ($(OS),Darwin) |
Hendricks266 | 96d081c | 2012-12-29 04:22:59 -0600 | [diff] [blame] | 31 | EXPLICIT_LIBS = $(libdir)/libgrabbag.a $(libdir)/libFLAC.a $(libdir)/libreplaygain_analysis.a $(libdir)/libgetopt.a $(libdir)/libutf8.a $(OGG_EXPLICIT_LIBS) $(ICONV_LIBS) -lm |
Josh Coalson | 2757af6 | 2004-10-30 00:03:21 +0000 | [diff] [blame] | 32 | else |
Evan Ramos | 9df6736 | 2014-06-23 16:24:49 -0500 | [diff] [blame^] | 33 | ifeq ($(findstring Windows,$(OS)),Windows) |
| 34 | LIBS = -lgrabbag -lFLAC -lreplaygain_analysis -lgetopt -lutf8 -lgrabbag -lwin_utf8_io $(OGG_LIBS) -lm |
| 35 | else |
Hendricks266 | 96d081c | 2012-12-29 04:22:59 -0600 | [diff] [blame] | 36 | LIBS = -lgrabbag -lFLAC -lreplaygain_analysis -lgetopt -lutf8 -lgrabbag $(OGG_LIBS) -lm |
Josh Coalson | 2757af6 | 2004-10-30 00:03:21 +0000 | [diff] [blame] | 37 | endif |
Evan Ramos | 9df6736 | 2014-06-23 16:24:49 -0500 | [diff] [blame^] | 38 | endif |
Josh Coalson | 4d3b90f | 2001-02-23 21:38:26 +0000 | [diff] [blame] | 39 | |
Josh Coalson | b74fc98 | 2002-11-20 06:40:08 +0000 | [diff] [blame] | 40 | SRCS_C = \ |
| 41 | main.c \ |
| 42 | operations.c \ |
Josh Coalson | 303123f | 2002-11-26 06:21:06 +0000 | [diff] [blame] | 43 | operations_shorthand_cuesheet.c \ |
Josh Coalson | b02574e | 2006-09-26 00:43:48 +0000 | [diff] [blame] | 44 | operations_shorthand_picture.c \ |
Josh Coalson | b74fc98 | 2002-11-20 06:40:08 +0000 | [diff] [blame] | 45 | operations_shorthand_seektable.c \ |
| 46 | operations_shorthand_streaminfo.c \ |
| 47 | operations_shorthand_vorbiscomment.c \ |
| 48 | options.c \ |
| 49 | usage.c \ |
| 50 | utils.c |
Josh Coalson | 4d3b90f | 2001-02-23 21:38:26 +0000 | [diff] [blame] | 51 | |
Josh Coalson | cd0e322 | 2002-10-23 22:08:13 +0000 | [diff] [blame] | 52 | include $(topdir)/build/exe.mk |
Josh Coalson | 4d3b90f | 2001-02-23 21:38:26 +0000 | [diff] [blame] | 53 | |
| 54 | # DO NOT DELETE THIS LINE -- make depend depends on it. |