cannam@86
|
1 # FLAC - Free Lossless Audio Codec
|
cannam@86
|
2 # Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson
|
cannam@86
|
3 #
|
cannam@86
|
4 # This file is part the FLAC project. FLAC is comprised of several
|
cannam@86
|
5 # components distributed under difference licenses. The codec libraries
|
cannam@86
|
6 # are distributed under Xiph.Org's BSD-like license (see the file
|
cannam@86
|
7 # COPYING.Xiph in this distribution). All other programs, libraries, and
|
cannam@86
|
8 # plugins are distributed under the GPL (see COPYING.GPL). The documentation
|
cannam@86
|
9 # is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
|
cannam@86
|
10 # FLAC distribution contains at the top the terms under which it may be
|
cannam@86
|
11 # distributed.
|
cannam@86
|
12 #
|
cannam@86
|
13 # Since this particular file is relevant to all components of FLAC,
|
cannam@86
|
14 # it may be distributed under the Xiph.Org license, which is the least
|
cannam@86
|
15 # restrictive of those mentioned above. See the file COPYING.Xiph in this
|
cannam@86
|
16 # distribution.
|
cannam@86
|
17
|
cannam@86
|
18 AUTOMAKE_OPTIONS = foreign
|
cannam@86
|
19
|
cannam@86
|
20 SUBDIRS = ru images
|
cannam@86
|
21
|
cannam@86
|
22 docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
|
cannam@86
|
23
|
cannam@86
|
24 doc_DATA = \
|
cannam@86
|
25 changelog.html \
|
cannam@86
|
26 comparison.html \
|
cannam@86
|
27 comparison__chopin_prelude_24.html \
|
cannam@86
|
28 comparison__dream_theater_600.html \
|
cannam@86
|
29 comparison__eddie_warner_titus.html \
|
cannam@86
|
30 comparison__fanfare_de_l_eventail_de_jeanne.html \
|
cannam@86
|
31 comparison__gloria_estefan_conga.html \
|
cannam@86
|
32 comparison__hand_in_my_pocket.html \
|
cannam@86
|
33 comparison__l_sub_raga_sivapriya.html \
|
cannam@86
|
34 comparison__laetatus_sum.html \
|
cannam@86
|
35 comparison__mummified_in_barbed_wire.html \
|
cannam@86
|
36 comparison__prokofiev_pcon3_3.html \
|
cannam@86
|
37 comparison__ravel_sq4_4.html \
|
cannam@86
|
38 comparison__scarlatti_k42.html \
|
cannam@86
|
39 comparison__tool_forty_six_and_2.html \
|
cannam@86
|
40 comparison__white_room.html \
|
cannam@86
|
41 comparison_all_cpudectime.html \
|
cannam@86
|
42 comparison_all_cpuenctime.html \
|
cannam@86
|
43 comparison_all_procdectime.html \
|
cannam@86
|
44 comparison_all_procenctime.html \
|
cannam@86
|
45 comparison_all_ratio.html \
|
cannam@86
|
46 developers.html \
|
cannam@86
|
47 documentation.html \
|
cannam@86
|
48 documentation_bugs.html \
|
cannam@86
|
49 documentation_example_code.html \
|
cannam@86
|
50 documentation_format_overview.html \
|
cannam@86
|
51 documentation_tasks.html \
|
cannam@86
|
52 documentation_tools.html \
|
cannam@86
|
53 documentation_tools_flac.html \
|
cannam@86
|
54 documentation_tools_metaflac.html \
|
cannam@86
|
55 documentation_tools_plugins.html \
|
cannam@86
|
56 download.html \
|
cannam@86
|
57 faq.html \
|
cannam@86
|
58 favicon.ico \
|
cannam@86
|
59 features.html \
|
cannam@86
|
60 flac.css \
|
cannam@86
|
61 format.html \
|
cannam@86
|
62 id.html \
|
cannam@86
|
63 index.html \
|
cannam@86
|
64 itunes.html \
|
cannam@86
|
65 license.html \
|
cannam@86
|
66 links.html \
|
cannam@86
|
67 news.html \
|
cannam@86
|
68 ogg_mapping.html
|
cannam@86
|
69
|
cannam@86
|
70 EXTRA_DIST = $(doc_DATA) api
|
cannam@86
|
71
|
cannam@86
|
72 # The install targets don't copy whole directories so we have to
|
cannam@86
|
73 # handle 'api/' specially:
|
cannam@86
|
74 install-data-local:
|
cannam@86
|
75 $(mkinstalldirs) $(DESTDIR)$(docdir)/api
|
cannam@86
|
76 (cd api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api)
|
cannam@86
|
77 uninstall-local:
|
cannam@86
|
78 rm -rf $(DESTDIR)$(docdir)/api
|
cannam@86
|
79 maintainer-clean-local:
|
cannam@86
|
80 rm -rf api
|