Makefile.am 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # FLAC - Free Lossless Audio Codec
  2. # Copyright (C) 2001-2009 Josh Coalson
  3. # Copyright (C) 2011-2016 Xiph.Org Foundation
  4. #
  5. # This file is part the FLAC project. FLAC is comprised of several
  6. # components distributed under different 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. SUBDIRS = images
  19. docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
  20. doc_DATA = \
  21. changelog.html \
  22. developers.html \
  23. documentation.html \
  24. documentation_bugs.html \
  25. documentation_example_code.html \
  26. documentation_format_overview.html \
  27. documentation_tools.html \
  28. documentation_tools_flac.html \
  29. documentation_tools_metaflac.html \
  30. faq.html \
  31. favicon.ico \
  32. features.html \
  33. flac.css \
  34. format.html \
  35. id.html \
  36. index.html \
  37. license.html \
  38. ogg_mapping.html
  39. EXTRA_DIST = $(doc_DATA) api
  40. if FLaC__HAS_DOXYGEN
  41. # The install targets don't copy whole directories so we have to
  42. # handle 'api/' specially:
  43. install-data-local:
  44. $(mkinstalldirs) $(DESTDIR)$(docdir)/api
  45. (cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api)
  46. uninstall-local:
  47. rm -rf $(DESTDIR)$(docdir)/api
  48. distclean-local:
  49. -rm -rf api
  50. endif