2001-06-08 00:13:21 +00:00
|
|
|
# FLAC - Free Lossless Audio Codec
|
2005-01-25 04:17:55 +00:00
|
|
|
# Copyright (C) 2001,2002,2003,2004,2005 Josh Coalson
|
2001-06-08 00:13:21 +00:00
|
|
|
#
|
2003-02-07 00:14:32 +00:00
|
|
|
# This file is part the FLAC project. FLAC is comprised of several
|
|
|
|
|
# components distributed under difference licenses. The codec libraries
|
|
|
|
|
# are distributed under Xiph.Org's BSD-like license (see the file
|
|
|
|
|
# COPYING.Xiph in this distribution). All other programs, libraries, and
|
|
|
|
|
# plugins are distributed under the GPL (see COPYING.GPL). The documentation
|
|
|
|
|
# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
|
|
|
|
|
# FLAC distribution contains at the top the terms under which it may be
|
|
|
|
|
# distributed.
|
2001-06-08 00:13:21 +00:00
|
|
|
#
|
2003-02-07 00:14:32 +00:00
|
|
|
# Since this particular file is relevant to all components of FLAC,
|
|
|
|
|
# it may be distributed under the Xiph.Org license, which is the least
|
|
|
|
|
# restrictive of those mentioned above. See the file COPYING.Xiph in this
|
|
|
|
|
# distribution.
|
2001-06-08 00:13:21 +00:00
|
|
|
|
2001-05-23 20:58:57 +00:00
|
|
|
if FLaC__HAS_XMMS
|
2001-01-19 22:39:39 +00:00
|
|
|
XMMS_DIRS = plugin_xmms
|
|
|
|
|
endif
|
|
|
|
|
|
2002-08-07 17:38:08 +00:00
|
|
|
if FLaC__HAS_OGG
|
|
|
|
|
OGGFLAC_DIRS = libOggFLAC libOggFLAC++
|
2002-08-23 06:45:23 +00:00
|
|
|
OGGFLAC_TEST_DIRS = test_libOggFLAC test_libOggFLAC++
|
2002-08-07 17:38:08 +00:00
|
|
|
endif
|
|
|
|
|
|
2002-07-09 06:27:07 +00:00
|
|
|
SUBDIRS = \
|
|
|
|
|
libFLAC \
|
|
|
|
|
libFLAC++ \
|
2002-08-07 17:38:08 +00:00
|
|
|
$(OGGFLAC_DIRS) \
|
2002-07-09 06:27:07 +00:00
|
|
|
share \
|
|
|
|
|
flac \
|
|
|
|
|
metaflac \
|
2002-08-23 06:45:23 +00:00
|
|
|
monkeys_audio_utilities \
|
|
|
|
|
plugin_common \
|
2002-07-09 06:27:07 +00:00
|
|
|
$(XMMS_DIRS) \
|
2002-08-23 06:45:23 +00:00
|
|
|
plugin_winamp2 \
|
2002-11-22 06:25:16 +00:00
|
|
|
test_grabbag \
|
2002-07-09 06:27:07 +00:00
|
|
|
test_libFLAC \
|
|
|
|
|
test_libFLAC++ \
|
2002-08-07 17:38:08 +00:00
|
|
|
$(OGGFLAC_TEST_DIRS) \
|
2004-09-21 05:41:23 +00:00
|
|
|
test_seeking \
|
2002-07-09 06:27:07 +00:00
|
|
|
test_streams
|
2002-10-16 23:38:24 +00:00
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2003-01-25 18:32:56 +00:00
|
|
|
Makefile.lite
|