Files
flac/doc/html/Makefile.am

56 lines
1.7 KiB
Makefile
Raw Normal View History

2002-07-16 16:09:53 +00:00
# FLAC - Free Lossless Audio Codec
# Copyright (C) 2001-2009 Josh Coalson
2016-12-05 06:35:39 +11:00
# Copyright (C) 2011-2016 Xiph.Org Foundation
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 different licenses. The codec libraries
2003-02-07 00:14:32 +00:00
# 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 = images
2002-07-16 16:09:53 +00:00
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
developers.html \
documentation.html \
documentation_bugs.html \
2007-09-16 20:58:48 +00:00
documentation_example_code.html \
documentation_format_overview.html \
documentation_tools.html \
documentation_tools_flac.html \
documentation_tools_metaflac.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 \
2004-09-08 00:59:43 +00:00
license.html \
2004-09-09 00:28:20 +00:00
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