• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#  FLAC - Free Lossless Audio Codec
2#  Copyright (C) 2002-2009  Josh Coalson
3#  Copyright (C) 2011-2016  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	Makefile.lite \
25	README \
26	getopt/CMakeLists.txt \
27	getopt/Makefile.lite \
28	getopt/getopt_static.vcproj \
29	getopt/getopt_static.vcxproj \
30	getopt/getopt_static.vcxproj.filters \
31	grabbag/CMakeLists.txt \
32	grabbag/Makefile.lite \
33	grabbag/grabbag_static.vcproj \
34	grabbag/grabbag_static.vcxproj \
35	grabbag/grabbag_static.vcxproj.filters \
36	replaygain_analysis/CMakeLists.txt \
37	replaygain_analysis/Makefile.lite \
38	replaygain_analysis/replaygain_analysis_static.vcproj \
39	replaygain_analysis/replaygain_analysis_static.vcxproj \
40	replaygain_analysis/replaygain_analysis_static.vcxproj.filters \
41	replaygain_synthesis/CMakeLists.txt \
42	replaygain_synthesis/Makefile.lite \
43	replaygain_synthesis/replaygain_synthesis_static.vcproj \
44	replaygain_synthesis/replaygain_synthesis_static.vcxproj \
45	replaygain_synthesis/replaygain_synthesis_static.vcxproj.filters \
46	utf8/CMakeLists.txt \
47	utf8/Makefile.lite \
48	utf8/charmaps.h \
49	utf8/makemap.c \
50	utf8/charset_test.c \
51	utf8/utf8_static.vcproj \
52	utf8/utf8_static.vcxproj \
53	utf8/utf8_static.vcxproj.filters \
54	win_utf8_io/Makefile.lite \
55	win_utf8_io/win_utf8_io_static.vcproj \
56	win_utf8_io/win_utf8_io_static.vcxproj \
57	win_utf8_io/win_utf8_io_static.vcxproj.filters
58
59
60noinst_LTLIBRARIES = \
61	getopt/libgetopt.la \
62	grabbag/libgrabbag.la \
63	utf8/libutf8.la \
64	$(libwin_utf8_io) \
65	replaygain_analysis/libreplaygain_analysis.la \
66	replaygain_synthesis/libreplaygain_synthesis.la
67
68
69if OS_IS_WINDOWS
70win_utf8_io_libwin_utf8_io_la_SOURCES =	win_utf8_io/win_utf8_io.c
71libwin_utf8_io = win_utf8_io/libwin_utf8_io.la
72win_utf8_io_libwin_utf8_io_la_LIBADD = $(top_builddir)/src/libFLAC/libFLAC.la -lm
73else
74win_utf8_io_libwin_utf8_io_la_SOURCES =
75libwin_utf8_io =
76endif
77
78getopt_libgetopt_la_SOURCES = getopt/getopt.c getopt/getopt1.c
79
80grabbag_libgrabbag_la_SOURCES = \
81	grabbag/alloc.c \
82	grabbag/cuesheet.c \
83	grabbag/file.c \
84	grabbag/picture.c \
85	grabbag/replaygain.c \
86	grabbag/seektable.c \
87	grabbag/snprintf.c
88
89utf8_libutf8_la_SOURCES = \
90	utf8/charset.c \
91	utf8/charset.h \
92	utf8/iconvert.c \
93	utf8/iconvert.h \
94	utf8/utf8.c
95
96replaygain_analysis_libreplaygain_analysis_la_SOURCES = replaygain_analysis/replaygain_analysis.c
97
98replaygain_synthesis_libreplaygain_synthesis_la_CFLAGS = -I $(top_srcdir)/src/share/replaygain_synthesis/include
99replaygain_synthesis_libreplaygain_synthesis_la_SOURCES = replaygain_synthesis/replaygain_synthesis.c
100