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