Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 1 | # FLAC - Free Lossless Audio Codec |
Erik de Castro Lopo | b1982fb | 2013-05-25 17:11:19 +1000 | [diff] [blame] | 2 | # Copyright (C) 2001-2009 Josh Coalson |
Erik de Castro Lopo | 6a5fe43 | 2016-12-05 06:35:39 +1100 | [diff] [blame] | 3 | # Copyright (C) 2011-2016 Xiph.Org Foundation |
Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 4 | # |
Josh Coalson | e8a7601 | 2003-02-07 00:14:32 +0000 | [diff] [blame] | 5 | # This file is part the FLAC project. FLAC is comprised of several |
Ulrich Klauer | cd4ddab | 2013-05-26 22:53:43 +0200 | [diff] [blame] | 6 | # components distributed under different licenses. The codec libraries |
Josh Coalson | e8a7601 | 2003-02-07 00:14:32 +0000 | [diff] [blame] | 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. |
Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 13 | # |
Josh Coalson | e8a7601 | 2003-02-07 00:14:32 +0000 | [diff] [blame] | 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. |
Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 18 | |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 19 | # |
| 20 | # automake provides the following useful targets: |
| 21 | # |
| 22 | # all: build all programs and libraries using the current |
| 23 | # configuration (set by configure) |
| 24 | # |
| 25 | # check: build and run all self-tests |
| 26 | # |
| 27 | # clean: remove everything except what's required to build everything |
| 28 | # |
| 29 | # distclean: remove everything except what goes in the distribution |
| 30 | # |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 31 | |
Erik de Castro Lopo | e38026a | 2012-02-13 19:55:46 +1100 | [diff] [blame] | 32 | ACLOCAL_AMFLAGS = -I m4 |
| 33 | |
Erik de Castro Lopo | e0f7e0e | 2019-11-17 16:15:51 +1100 | [diff] [blame] | 34 | SUBDIRS = doc include m4 man src test build microbench oss-fuzz |
David Seifert | cc08beb | 2017-01-13 18:42:29 +0100 | [diff] [blame] | 35 | |
| 36 | if EXAMPLES |
| 37 | SUBDIRS += examples |
| 38 | endif |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 39 | |
uid38180 | b4bc14b | 2002-09-09 20:53:08 +0000 | [diff] [blame] | 40 | EXTRA_DIST = \ |
Erik de Castro Lopo | 6d0e222 | 2019-09-29 11:57:21 +1000 | [diff] [blame] | 41 | CMakeLists.txt \ |
| 42 | config.cmake.h.in \ |
| 43 | flac-config.cmake.in \ |
evpobr | e0b62a6 | 2020-05-02 10:54:28 +0500 | [diff] [blame] | 44 | cmake/FindOgg.cmake \ |
Erik de Castro Lopo | 6d0e222 | 2019-09-29 11:57:21 +1000 | [diff] [blame] | 45 | cmake/UseSystemExtensions.cmake \ |
evpobr | ce6dd6b | 2020-05-08 14:20:35 +0500 | [diff] [blame] | 46 | cmake/CheckCPUArch.cmake \ |
| 47 | cmake/CheckCPUArch.c.in \ |
Josh Coalson | 0342d38 | 2002-06-10 18:27:05 +0000 | [diff] [blame] | 48 | COPYING.FDL \ |
| 49 | COPYING.GPL \ |
| 50 | COPYING.LGPL \ |
Josh Coalson | 334defd | 2004-07-31 22:56:34 +0000 | [diff] [blame] | 51 | COPYING.Xiph \ |
Josh Coalson | eec4fa7 | 2007-07-11 04:15:26 +0000 | [diff] [blame] | 52 | FLAC.sln \ |
Erik de Castro Lopo | bef7381 | 2014-11-25 06:02:30 +1100 | [diff] [blame] | 53 | FLAC-vs2005.sln \ |
Josh Coalson | cd443f6 | 2002-07-09 06:27:07 +0000 | [diff] [blame] | 54 | Makefile.lite \ |
Erik de Castro Lopo | db3b304 | 2016-12-11 20:20:47 +1100 | [diff] [blame] | 55 | Makefile.deps \ |
Josh Coalson | 0342d38 | 2002-06-10 18:27:05 +0000 | [diff] [blame] | 56 | autogen.sh \ |
Josh Coalson | e29fb7c | 2002-10-23 22:07:52 +0000 | [diff] [blame] | 57 | config.rpath \ |
Josh Coalson | b2cc54a | 2002-06-28 19:26:15 +0000 | [diff] [blame] | 58 | depcomp \ |
Josh Coalson | dad786b | 2002-09-11 19:16:20 +0000 | [diff] [blame] | 59 | ltmain.sh \ |
Josh Coalson | c257065 | 2004-07-29 06:43:23 +0000 | [diff] [blame] | 60 | strip_non_asm_libtool_args.sh |
Erik de Castro Lopo | e7fb215 | 2012-02-01 22:00:08 +1100 | [diff] [blame] | 61 | |
Erik de Castro Lopo | 4949191 | 2012-02-04 16:12:05 +1100 | [diff] [blame] | 62 | CLEANFILES = *~ |