1#  FLAC - Free Lossless Audio Codec
2#  Copyright (C) 2001-2009  Josh Coalson
3#  Copyright (C) 2011-2016  Xiph.Org Foundation
4#
5#  This file is part the FLAC project.  FLAC is comprised of several
6#  components distributed under different licenses.  The codec libraries
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.
13#
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.
18
19SUBDIRS = images
20
21html_DATA = \
22	changelog.html \
23	developers.html \
24	documentation.html \
25	documentation_bugs.html \
26	documentation_example_code.html \
27	documentation_format_overview.html \
28	documentation_tools.html \
29	documentation_tools_flac.html \
30	documentation_tools_metaflac.html \
31	faq.html \
32	favicon.ico \
33	features.html \
34	flac.css \
35	format.html \
36	id.html \
37	index.html \
38	license.html \
39	ogg_mapping.html
40
41EXTRA_DIST = $(html_DATA) api
42
43if FLaC__HAS_DOXYGEN
44# The install targets don't copy whole directories so we have to
45# handle 'api/' specially:
46install-data-local:
47	$(mkinstalldirs) $(DESTDIR)$(htmldir)/api
48	(cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(htmldir)/api)
49uninstall-local:
50	rm -rf $(DESTDIR)$(htmldir)/api
51distclean-local:
52	-rm -rf api
53endif
54