cannam@86
|
1 # FLAC - Free Lossless Audio Codec
|
cannam@86
|
2 # Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
cannam@86
|
3 #
|
cannam@86
|
4 # This file is part the FLAC project. FLAC is comprised of several
|
cannam@86
|
5 # components distributed under difference licenses. The codec libraries
|
cannam@86
|
6 # are distributed under Xiph.Org's BSD-like license (see the file
|
cannam@86
|
7 # COPYING.Xiph in this distribution). All other programs, libraries, and
|
cannam@86
|
8 # plugins are distributed under the GPL (see COPYING.GPL). The documentation
|
cannam@86
|
9 # is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
|
cannam@86
|
10 # FLAC distribution contains at the top the terms under which it may be
|
cannam@86
|
11 # distributed.
|
cannam@86
|
12 #
|
cannam@86
|
13 # Since this particular file is relevant to all components of FLAC,
|
cannam@86
|
14 # it may be distributed under the Xiph.Org license, which is the least
|
cannam@86
|
15 # restrictive of those mentioned above. See the file COPYING.Xiph in this
|
cannam@86
|
16 # distribution.
|
cannam@86
|
17
|
cannam@86
|
18 #
|
cannam@86
|
19 # automake provides the following useful targets:
|
cannam@86
|
20 #
|
cannam@86
|
21 # all: build all programs and libraries using the current
|
cannam@86
|
22 # configuration (set by configure)
|
cannam@86
|
23 #
|
cannam@86
|
24 # check: build and run all self-tests
|
cannam@86
|
25 #
|
cannam@86
|
26 # clean: remove everything except what's required to build everything
|
cannam@86
|
27 #
|
cannam@86
|
28 # distclean: remove everything except what goes in the distribution
|
cannam@86
|
29 #
|
cannam@86
|
30
|
cannam@86
|
31 AUTOMAKE_OPTIONS = foreign 1.7
|
cannam@86
|
32
|
cannam@86
|
33 SUBDIRS = doc include m4 man src examples test build obj
|
cannam@86
|
34
|
cannam@86
|
35 DISTCLEANFILES = libtool-disable-static
|
cannam@86
|
36
|
cannam@86
|
37 EXTRA_DIST = \
|
cannam@86
|
38 COPYING.FDL \
|
cannam@86
|
39 COPYING.GPL \
|
cannam@86
|
40 COPYING.LGPL \
|
cannam@86
|
41 COPYING.Xiph \
|
cannam@86
|
42 FLAC.dsw \
|
cannam@86
|
43 FLAC.sln \
|
cannam@86
|
44 Makefile.lite \
|
cannam@86
|
45 all.dsp \
|
cannam@86
|
46 all_dynamic.dsp \
|
cannam@86
|
47 all_static.dsp \
|
cannam@86
|
48 autogen.sh \
|
cannam@86
|
49 config.rpath \
|
cannam@86
|
50 depcomp \
|
cannam@86
|
51 ltmain.sh \
|
cannam@86
|
52 strip_non_asm_libtool_args.sh
|