1# FLAC - Free Lossless Audio Codec 2# Copyright (C) 2002-2009 Josh Coalson 3# Copyright (C) 2011-2023 Xiph.Org Foundation 4# 5# This file is part the FLAC project. FLAC is comprised of several 6# components distributed under different licenses. The codec libraries 7# are distributed under Xiph.Org's BSD-like license (see the file 8# COPYING.Xiph in this distribution). All other programs, libraries, and 9# plugins are distributed under the GPL (see COPYING.GPL). The documentation 10# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the 11# FLAC distribution contains at the top the terms under which it may be 12# distributed. 13# 14# Since this particular file is relevant to all components of FLAC, 15# it may be distributed under the Xiph.Org license, which is the least 16# restrictive of those mentioned above. See the file COPYING.Xiph in this 17# distribution. 18 19AUTOMAKE_OPTIONS = subdir-objects 20 21AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include 22 23EXTRA_DIST = \ 24 README \ 25 getopt/CMakeLists.txt \ 26 grabbag/CMakeLists.txt \ 27 replaygain_analysis/CMakeLists.txt \ 28 replaygain_synthesis/CMakeLists.txt \ 29 utf8/CMakeLists.txt \ 30 utf8/charmaps.h \ 31 utf8/makemap.c \ 32 utf8/charset_test.c 33 34 35noinst_LTLIBRARIES = \ 36 getopt/libgetopt.la \ 37 grabbag/libgrabbag.la \ 38 utf8/libutf8.la \ 39 $(libwin_utf8_io) \ 40 replaygain_analysis/libreplaygain_analysis.la \ 41 replaygain_synthesis/libreplaygain_synthesis.la 42 43 44if OS_IS_WINDOWS 45win_utf8_io_libwin_utf8_io_la_SOURCES = win_utf8_io/win_utf8_io.c 46libwin_utf8_io = win_utf8_io/libwin_utf8_io.la 47else 48win_utf8_io_libwin_utf8_io_la_SOURCES = 49libwin_utf8_io = 50endif 51 52getopt_libgetopt_la_SOURCES = getopt/getopt.c getopt/getopt1.c 53 54grabbag_libgrabbag_la_SOURCES = \ 55 grabbag/alloc.c \ 56 grabbag/cuesheet.c \ 57 grabbag/file.c \ 58 grabbag/picture.c \ 59 grabbag/replaygain.c \ 60 grabbag/seektable.c \ 61 grabbag/snprintf.c 62 63utf8_libutf8_la_SOURCES = \ 64 utf8/charset.c \ 65 utf8/charset.h \ 66 utf8/iconvert.c \ 67 utf8/iconvert.h \ 68 utf8/utf8.c 69 70replaygain_analysis_libreplaygain_analysis_la_SOURCES = replaygain_analysis/replaygain_analysis.c 71 72replaygain_synthesis_libreplaygain_synthesis_la_CFLAGS = -I $(top_srcdir)/src/share/replaygain_synthesis/include 73replaygain_synthesis_libreplaygain_synthesis_la_SOURCES = replaygain_synthesis/replaygain_synthesis.c 74