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