File: Makefile.am

package info (click to toggle)
twolame 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 3,440 kB
  • sloc: ansic: 9,939; sh: 4,451; perl: 343; makefile: 183
file content (72 lines) | stat: -rw-r--r-- 1,405 bytes parent folder | download
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72

asciidoc=@PATH_ASCIIDOC@ -b xhtml11 \
	-a revision="@PACKAGE_VERSION@" \
	-a stylesheet=twolame.css \
	-a linkcss \
	-a stylesdir='.'

pkgdocdir = @docdir@
pkghtmldir = $(pkgdocdir)/html

doxygen_files = \
    doxygen.css \
    doxygen.png \
    nav_f.png \
    nav_h.png \
    tabs.css \
    twolame_8h_source.html \
    twolame_8h.html

asciidoc_files = \
    api.html \
    authors.html \
    news.html \
    index.html \
    psycho.html \
    readme.html \
    twolame.1.html \
    vbr.html

stylesheet_files = \
    twolame-manpage.css \
    twolame.css

EXTRA_DIST = Doxyfile.in

if MAINTAINER_MODE

pkghtml_DATA = $(doxygen_files) $(asciidoc_files) $(stylesheet_files)
EXTRA_DIST += Doxyfile.in $(pkghtml_DATA)

$(doxygen_files): Doxyfile $(top_srcdir)/libtwolame/twolame.h
	@PATH_DOXYGEN@
	rm -f index.html files.html globals*.html

index.html: $(top_srcdir)/doc/index.txt
	$(asciidoc) -o $@ $<

readme.html: $(top_srcdir)/README
	$(asciidoc) -o $@ $<

authors.html: $(top_srcdir)/AUTHORS
	$(asciidoc) -o $@ $<

news.html: $(top_srcdir)/NEWS
	$(asciidoc) -o $@ $<

api.html: $(top_srcdir)/doc/api.txt
	$(asciidoc) -o $@ $<

psycho.html: $(top_srcdir)/doc/psycho.txt
	$(asciidoc) -o $@ $<

vbr.html: $(top_srcdir)/doc/vbr.txt
	$(asciidoc) -o $@ $<

twolame.1.html: $(top_srcdir)/doc/twolame.1.txt
	$(asciidoc) -d manpage -o $@ $<

MAINTAINERCLEANFILES = $(doxygen_files) $(asciidoc_files)

endif