flac: Remove variable from expression because it's always equals to false
[flac.git] / src / flac / Makefile.lite
blobd6553cf9bb4e7f62652287e4a931e38c530c9d6f
1 #  flac - Command-line FLAC encoder/decoder
2 #  Copyright (C) 2000-2009  Josh Coalson
3 #  Copyright (C) 2011-2016  Xiph.Org Foundation
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.
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.
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.
20 # GNU makefile
23 topdir = ../..
25 include $(topdir)/build/config.mk
26 libdir = $(topdir)/objs/$(BUILD)/lib
28 PROGRAM_NAME = flac
30 INCLUDES = -I./include -I$(topdir)/include $(OGG_INCLUDES)
32 ifeq ($(OS),Darwin)
33     EXPLICIT_LIBS = $(libdir)/libgrabbag.a $(libdir)/libFLAC.a $(libdir)/libreplaygain_analysis.a $(libdir)/libreplaygain_synthesis.a $(libdir)/libgetopt.a $(libdir)/libutf8.a $(OGG_EXPLICIT_LIBS) $(ICONV_LIBS) -lm
34 else
35 ifeq ($(findstring Windows,$(OS)),Windows)
36     LIBS = -lgrabbag -lFLAC -lreplaygain_analysis -lreplaygain_synthesis -lgetopt -lutf8 -lgrabbag -lwin_utf8_io $(OGG_LIBS) -lm
37 else
38     LIBS = -lgrabbag -lFLAC -lreplaygain_analysis -lreplaygain_synthesis -lgetopt -lutf8 -lgrabbag $(OGG_LIBS) -lm
39 endif
40 endif
42 SRCS_C = \
43         analyze.c \
44         decode.c \
45         encode.c \
46         foreign_metadata.c \
47         local_string_utils.c \
48         main.c \
49         utils.c \
50         vorbiscomment.c
52 include $(topdir)/build/exe.mk
54 # DO NOT DELETE THIS LINE -- make depend depends on it.