~ubuntu-branches/ubuntu/raring/flac/raring

« back to all changes in this revision

Viewing changes to doc/html/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Kwan
  • Date: 2007-05-29 22:56:36 UTC
  • mto: (8.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20070529225636-p8lkii0r0kp50pns
Tags: upstream-1.1.4
ImportĀ upstreamĀ versionĀ 1.1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#  FLAC - Free Lossless Audio Codec
2
 
#  Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
 
2
#  Copyright (C) 2001,2002,2003,2004,2005,2006,2007  Josh Coalson
3
3
#
4
4
#  This file is part the FLAC project.  FLAC is comprised of several
5
5
#  components distributed under difference licenses.  The codec libraries
21
21
 
22
22
docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
23
23
 
24
 
doc_DATA =  \
 
24
doc_DATA = \
25
25
        changelog.html \
26
26
        comparison.html \
27
27
        developers.html \
28
28
        documentation.html \
 
29
        documentation_bugs.html \
 
30
        documentation_format_overview.html \
 
31
        documentation_tasks.html \
 
32
        documentation_tools.html \
 
33
        documentation_tools_flac.html \
 
34
        documentation_tools_metaflac.html \
 
35
        documentation_tools_plugins.html \
29
36
        download.html \
30
37
        faq.html \
31
38
        favicon.ico \
32
39
        features.html \
 
40
        flac.css \
33
41
        format.html \
34
 
        goals.html \
35
42
        id.html \
36
43
        index.html \
 
44
        itunes.html \
37
45
        license.html \
38
46
        links.html \
39
47
        news.html \
40
48
        ogg_mapping.html
41
49
 
42
 
if FLaC__HAS_DOXYGEN
43
50
EXTRA_DIST = $(doc_DATA) api
44
 
else
45
 
EXTRA_DIST = $(doc_DATA)
46
 
endif
47
51
 
48
 
if FLaC__HAS_DOXYGEN
49
52
# The install targets don't copy whole directories so we have to
50
53
# handle 'api/' specially:
51
54
install-data-local:
55
58
        rm -rf $(DESTDIR)$(docdir)/api
56
59
maintainer-clean-local:
57
60
        rm -rf api
58
 
endif