File: Makefile.am

package info (click to toggle)
swish-e 2.4.5-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 7,044 kB
  • ctags: 7,630
  • sloc: ansic: 47,771; sh: 8,968; perl: 3,170; makefile: 587; xml: 9
file content (51 lines) | stat: -rw-r--r-- 733 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# $id$
#
# Conditionally install the html documentation


# Where docs are installed
htmldir = $(datadir)/doc/$(PACKAGE)/html

if BUILDDOCS

# build the docs from website src

$(html_files):
	$(SWISH_WEB) -swishsrc $(top_srcdir) -poddest . -v -all

DISTCLEANFILES = \
	$(html_DATA)

endif

if INSTALLDOCS

html_DATA = \
	$(html_files)

endif



html_files = \
    api.html \
    changes.html \
    filter.html \
    index.html \
    install.html \
    readme.html \
    search.cgi.html \
    spider.html \
    swish-3.0.html \
    swish-bugs.html \
    swish.cgi.html \
    swish-config.html \
    swish.css \
    swish-faq.html \
    swish-library.html \
    swish-run.html \
    swish-search.html

EXTRA_DIST = \
    $(html_DATA)