blob: 536b459f4f9a8f7b6a323eec60c4c942f54d9a39 [file] [log] [blame]
Josh Coalson5e5fc012002-07-16 16:09:53 +00001# FLAC - Free Lossless Audio Codec
Josh Coalson95643902004-01-17 04:14:43 +00002# Copyright (C) 2001,2002,2003,2004 Josh Coalson
Josh Coalson5e5fc012002-07-16 16:09:53 +00003#
Josh Coalsone8a76012003-02-07 00:14:32 +00004# 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 Coalson5e5fc012002-07-16 16:09:53 +000012#
Josh Coalsone8a76012003-02-07 00:14:32 +000013# 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 Coalson5e5fc012002-07-16 16:09:53 +000017
18AUTOMAKE_OPTIONS = foreign
19
20SUBDIRS = ru images
21
22docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
23
24doc_DATA = \
Josh Coalsonac1da402004-07-29 23:59:25 +000025 changelog.html \
Josh Coalson5e5fc012002-07-16 16:09:53 +000026 comparison.html \
27 developers.html \
28 documentation.html \
29 download.html \
Josh Coalson334defd2004-07-31 22:56:34 +000030 faq.html \
Josh Coalson5e5fc012002-07-16 16:09:53 +000031 features.html \
32 format.html \
33 goals.html \
34 id.html \
35 index.html \
Josh Coalsonac1da402004-07-29 23:59:25 +000036 links.html \
Josh Coalsonef528ec2002-09-11 00:37:22 +000037 news.html
Josh Coalson5e5fc012002-07-16 16:09:53 +000038
Josh Coalson26ca46b2004-07-31 22:10:13 +000039if FLaC__HAS_DOXYGEN
Josh Coalsonef528ec2002-09-11 00:37:22 +000040EXTRA_DIST = $(doc_DATA) api
Josh Coalson26ca46b2004-07-31 22:10:13 +000041else
42EXTRA_DIST = $(doc_DATA)
43endif
Josh Coalson1f99eac2002-08-23 06:45:23 +000044
Josh Coalson26ca46b2004-07-31 22:10:13 +000045if FLaC__HAS_DOXYGEN
Josh Coalson1f99eac2002-08-23 06:45:23 +000046# The install targets don't copy whole directories so we have to
47# handle 'api/' specially:
48install-data-local:
49 $(mkinstalldirs) $(DESTDIR)$(docdir)/api
50 (cd api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api)
51uninstall-local:
52 rm -rf $(DESTDIR)$(docdir)/api
Josh Coalson52afda92003-01-10 04:38:44 +000053maintainer-clean-local:
Josh Coalsonb39417b2002-09-24 06:41:29 +000054 rm -rf api
Josh Coalson26ca46b2004-07-31 22:10:13 +000055endif