Blame src/flac/Makefile.am

Packit 8f7830
#  flac - Command-line FLAC encoder/decoder
Packit 8f7830
#  Copyright (C) 2000-2009  Josh Coalson
Packit 8f7830
#  Copyright (C) 2011-2016  Xiph.Org Foundation
Packit 8f7830
#
Packit 8f7830
#  This program is free software; you can redistribute it and/or
Packit 8f7830
#  modify it under the terms of the GNU General Public License
Packit 8f7830
#  as published by the Free Software Foundation; either version 2
Packit 8f7830
#  of the License, or (at your option) any later version.
Packit 8f7830
#
Packit 8f7830
#  This program is distributed in the hope that it will be useful,
Packit 8f7830
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 8f7830
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 8f7830
#  GNU General Public License for more details.
Packit 8f7830
#
Packit 8f7830
#  You should have received a copy of the GNU General Public License along
Packit 8f7830
#  with this program; if not, write to the Free Software Foundation, Inc.,
Packit 8f7830
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Packit 8f7830
Packit 8f7830
bin_PROGRAMS = flac
Packit 8f7830
Packit 8f7830
AM_CFLAGS = @OGG_CFLAGS@
Packit 8f7830
AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
Packit 8f7830
EXTRA_DIST = \
Packit 8f7830
	Makefile.lite \
Packit 8f7830
	Makefile.lite.iffscan \
Packit 8f7830
	flac.vcproj \
Packit 8f7830
	flac.vcxproj \
Packit 8f7830
	flac.vcxproj.filters \
Packit 8f7830
	iffscan.c \
Packit 8f7830
	iffscan.vcproj \
Packit 8f7830
	iffscan.vcxproj \
Packit 8f7830
	iffscan.vcxproj.filters
Packit 8f7830
Packit 8f7830
flac_SOURCES = \
Packit 8f7830
	analyze.c \
Packit 8f7830
	decode.c \
Packit 8f7830
	encode.c \
Packit 8f7830
	foreign_metadata.c \
Packit 8f7830
	main.c \
Packit 8f7830
	local_string_utils.c \
Packit 8f7830
	utils.c \
Packit 8f7830
	vorbiscomment.c \
Packit 8f7830
	analyze.h \
Packit 8f7830
	decode.h \
Packit 8f7830
	encode.h \
Packit 8f7830
	foreign_metadata.h \
Packit 8f7830
	local_string_utils.h \
Packit 8f7830
	utils.h \
Packit 8f7830
	vorbiscomment.h
Packit 8f7830
Packit 8f7830
if OS_IS_WINDOWS
Packit 8f7830
win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la
Packit 8f7830
endif
Packit 8f7830
Packit 8f7830
flac_LDADD = \
Packit 8f7830
	$(top_builddir)/src/share/utf8/libutf8.la \
Packit 8f7830
	$(top_builddir)/src/share/grabbag/libgrabbag.la \
Packit 8f7830
	$(top_builddir)/src/share/getopt/libgetopt.la \
Packit 8f7830
	$(top_builddir)/src/share/replaygain_analysis/libreplaygain_analysis.la \
Packit 8f7830
	$(top_builddir)/src/share/replaygain_synthesis/libreplaygain_synthesis.la \
Packit 8f7830
	$(top_builddir)/src/libFLAC/libFLAC.la \
Packit 8f7830
	$(win_utf8_lib) \
Packit 8f7830
	@LIBICONV@ \
Packit 8f7830
	-lm
Packit 8f7830
Packit 8f7830
CLEANFILES = flac.exe