Files
flac/doc/html/Makefile.am

81 lines
2.5 KiB
Makefile
Raw Normal View History

2002-07-16 16:09:53 +00:00
# FLAC - Free Lossless Audio Codec
2009-01-07 07:31:28 +00:00
# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
2002-07-16 16:09:53 +00:00
#
2003-02-07 00:14:32 +00:00
# This file is part the FLAC project. FLAC is comprised of several
# components distributed under difference licenses. The codec libraries
# are distributed under Xiph.Org's BSD-like license (see the file
# COPYING.Xiph in this distribution). All other programs, libraries, and
# plugins are distributed under the GPL (see COPYING.GPL). The documentation
# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
# FLAC distribution contains at the top the terms under which it may be
# distributed.
2002-07-16 16:09:53 +00:00
#
2003-02-07 00:14:32 +00:00
# Since this particular file is relevant to all components of FLAC,
# it may be distributed under the Xiph.Org license, which is the least
# restrictive of those mentioned above. See the file COPYING.Xiph in this
# distribution.
2002-07-16 16:09:53 +00:00
SUBDIRS = ru images
docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
2007-02-14 06:12:24 +00:00
doc_DATA = \
2004-07-29 23:59:25 +00:00
changelog.html \
2002-07-16 16:09:53 +00:00
comparison.html \
2007-09-16 20:58:48 +00:00
comparison__chopin_prelude_24.html \
comparison__dream_theater_600.html \
comparison__eddie_warner_titus.html \
comparison__fanfare_de_l_eventail_de_jeanne.html \
comparison__gloria_estefan_conga.html \
comparison__hand_in_my_pocket.html \
comparison__l_sub_raga_sivapriya.html \
comparison__laetatus_sum.html \
comparison__mummified_in_barbed_wire.html \
comparison__prokofiev_pcon3_3.html \
comparison__ravel_sq4_4.html \
comparison__scarlatti_k42.html \
comparison__tool_forty_six_and_2.html \
comparison__white_room.html \
comparison_all_cpudectime.html \
comparison_all_cpuenctime.html \
comparison_all_procdectime.html \
comparison_all_procenctime.html \
comparison_all_ratio.html \
2002-07-16 16:09:53 +00:00
developers.html \
documentation.html \
documentation_bugs.html \
2007-09-16 20:58:48 +00:00
documentation_example_code.html \
documentation_format_overview.html \
documentation_tasks.html \
documentation_tools.html \
documentation_tools_flac.html \
documentation_tools_metaflac.html \
documentation_tools_plugins.html \
2002-07-16 16:09:53 +00:00
download.html \
faq.html \
favicon.ico \
2002-07-16 16:09:53 +00:00
features.html \
flac.css \
2002-07-16 16:09:53 +00:00
format.html \
id.html \
index.html \
itunes.html \
2004-09-08 00:59:43 +00:00
license.html \
2004-07-29 23:59:25 +00:00
links.html \
2004-09-09 00:28:20 +00:00
news.html \
ogg_mapping.html
2002-07-16 16:09:53 +00:00
EXTRA_DIST = $(doc_DATA) api
2012-02-01 19:46:27 -08:00
if FLaC__HAS_DOXYGEN
# The install targets don't copy whole directories so we have to
# handle 'api/' specially:
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(docdir)/api
(cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api)
uninstall-local:
rm -rf $(DESTDIR)$(docdir)/api
distclean-local:
-rm -rf api
2012-02-01 19:46:27 -08:00
endif