Set version to 1.3.0 and update coyprights throughout.
[platform/upstream/flac.git] / doc / html / Makefile.am
1 #  FLAC - Free Lossless Audio Codec
2 #  Copyright (C) 2001-2009  Josh Coalson
3 #  Copyright (C) 2011-2013  Xiph.Org Foundation
4 #
5 #  This file is part the FLAC project.  FLAC is comprised of several
6 #  components distributed under difference 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
19 SUBDIRS = ru images
20
21 docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
22
23 doc_DATA = \
24         changelog.html \
25         comparison.html \
26         comparison__chopin_prelude_24.html \
27         comparison__dream_theater_600.html \
28         comparison__eddie_warner_titus.html \
29         comparison__fanfare_de_l_eventail_de_jeanne.html \
30         comparison__gloria_estefan_conga.html \
31         comparison__hand_in_my_pocket.html \
32         comparison__l_sub_raga_sivapriya.html \
33         comparison__laetatus_sum.html \
34         comparison__mummified_in_barbed_wire.html \
35         comparison__prokofiev_pcon3_3.html \
36         comparison__ravel_sq4_4.html \
37         comparison__scarlatti_k42.html \
38         comparison__tool_forty_six_and_2.html \
39         comparison__white_room.html \
40         comparison_all_cpudectime.html \
41         comparison_all_cpuenctime.html \
42         comparison_all_procdectime.html \
43         comparison_all_procenctime.html \
44         comparison_all_ratio.html \
45         developers.html \
46         documentation.html \
47         documentation_bugs.html \
48         documentation_example_code.html \
49         documentation_format_overview.html \
50         documentation_tasks.html \
51         documentation_tools.html \
52         documentation_tools_flac.html \
53         documentation_tools_metaflac.html \
54         documentation_tools_plugins.html \
55         download.html \
56         faq.html \
57         favicon.ico \
58         features.html \
59         flac.css \
60         format.html \
61         id.html \
62         index.html \
63         itunes.html \
64         license.html \
65         links.html \
66         news.html \
67         ogg_mapping.html
68
69 EXTRA_DIST = $(doc_DATA) api
70
71 if FLaC__HAS_DOXYGEN
72 # The install targets don't copy whole directories so we have to
73 # handle 'api/' specially:
74 install-data-local:
75         $(mkinstalldirs) $(DESTDIR)$(docdir)/api
76         (cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api)
77 uninstall-local:
78         rm -rf $(DESTDIR)$(docdir)/api
79 distclean-local:
80         -rm -rf api
81 endif