1#  FLAC - Free Lossless Audio Codec
2#  Copyright (C) 2001,2002,2003,2004,2005,2006,2007  Josh Coalson
3#
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.
12#
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.
17
18AUTOMAKE_OPTIONS = foreign
19
20SUBDIRS = ru images
21
22docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
23
24doc_DATA = \
25	changelog.html \
26	comparison.html \
27	comparison__chopin_prelude_24.html \
28	comparison__dream_theater_600.html \
29	comparison__eddie_warner_titus.html \
30	comparison__fanfare_de_l_eventail_de_jeanne.html \
31	comparison__gloria_estefan_conga.html \
32	comparison__hand_in_my_pocket.html \
33	comparison__l_sub_raga_sivapriya.html \
34	comparison__laetatus_sum.html \
35	comparison__mummified_in_barbed_wire.html \
36	comparison__prokofiev_pcon3_3.html \
37	comparison__ravel_sq4_4.html \
38	comparison__scarlatti_k42.html \
39	comparison__tool_forty_six_and_2.html \
40	comparison__white_room.html \
41	comparison_all_cpudectime.html \
42	comparison_all_cpuenctime.html \
43	comparison_all_procdectime.html \
44	comparison_all_procenctime.html \
45	comparison_all_ratio.html \
46	developers.html \
47	documentation.html \
48	documentation_bugs.html \
49	documentation_example_code.html \
50	documentation_format_overview.html \
51	documentation_tasks.html \
52	documentation_tools.html \
53	documentation_tools_flac.html \
54	documentation_tools_metaflac.html \
55	documentation_tools_plugins.html \
56	download.html \
57	faq.html \
58	favicon.ico \
59	features.html \
60	flac.css \
61	format.html \
62	id.html \
63	index.html \
64	itunes.html \
65	license.html \
66	links.html \
67	news.html \
68	ogg_mapping.html
69
70EXTRA_DIST = $(doc_DATA) api
71
72# The install targets don't copy whole directories so we have to
73# handle 'api/' specially:
74install-data-local:
75	$(mkinstalldirs) $(DESTDIR)$(docdir)/api
76	(cd api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api)
77uninstall-local:
78	rm -rf $(DESTDIR)$(docdir)/api
79maintainer-clean-local:
80	rm -rf api
81