~ubuntu-branches/ubuntu/saucy/libnl3/saucy

« back to all changes in this revision

Viewing changes to .pc/debian/out-of-tree.diff/doc/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Heiko Stuebner
  • Date: 2012-06-30 15:54:25 UTC
  • mfrom: (3.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20120630155425-6wx9v9q70vry53vg
Tags: 3.2.7-4
* Add watch file (Closes: #679473)
* Use dh-autoreconf to update the build system (Closes: 679474)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- Makefile -*-
 
2
 
 
3
.PHONY: gendoc api_refs asciidoc
 
4
 
 
5
ASCIIDOCOPTS=-a pygments -a language=c -a icons \
 
6
             -a toc2 \
 
7
             -a numbered \
 
8
             -a imagesdir="./images/" \
 
9
             -a iconsdir="./images/icons" \
 
10
             -a stylesdir="${abs_srcdir}/stylesheets/"
 
11
 
 
12
EXTRA_DIST = \
 
13
        Doxyfile \
 
14
        DoxygenLayout.xml \
 
15
        core.txt \
 
16
        route.txt \
 
17
        index.txt \
 
18
        libnl.css \
 
19
        README \
 
20
        doxygen-link.py \
 
21
        gen-tags.sh \
 
22
        resolve-asciidoc-refs.py \
 
23
        tags2dict.sh \
 
24
        stylesheets/asciidoc.css \
 
25
        stylesheets/asciidoc-manpage.css \
 
26
        stylesheets/docbook-xsl.css \
 
27
        stylesheets/flask.css \
 
28
        stylesheets/flask-manpage.css \
 
29
        stylesheets/pygments.css \
 
30
        stylesheets/slidy.css \
 
31
        stylesheets/toc2.css \
 
32
        stylesheets/volnitsky.css \
 
33
        stylesheets/volnitsky-manpage.css \
 
34
        stylesheets/xhtml11-quirks.css \
 
35
        images/asciidoc__1.png \
 
36
        images/asciidoc__2.png \
 
37
        images/asciidoc__3.png \
 
38
        images/asciidoc__4.png \
 
39
        images/asciidoc__5.png \
 
40
        images/asciidoc__6.png \
 
41
        images/asciidoc__7.png \
 
42
        images/attribute_hdr.png \
 
43
        images/classful_qdisc.png \
 
44
        images/classless_qdisc_nbands.png \
 
45
        images/classless_qdisc.png \
 
46
        images/ifinfomsg.png \
 
47
        images/library_overview.png \
 
48
        images/nlmsgerr.png \
 
49
        images/nlmsghdr.png \
 
50
        images/qdisc_default.png \
 
51
        images/qdisc_mq.png \
 
52
        images/tc_obj.png \
 
53
        images/tc_overview.png \
 
54
        images/icons/caution.png \
 
55
        images/icons/example.png \
 
56
        images/icons/home.png \
 
57
        images/icons/important.png \
 
58
        images/icons/next.png \
 
59
        images/icons/note.png \
 
60
        images/icons/prev.png \
 
61
        images/icons/README \
 
62
        images/icons/tip.png \
 
63
        images/icons/up.png \
 
64
        images/icons/warning.png \
 
65
        images/icons/callouts/1.png \
 
66
        images/icons/callouts/2.png \
 
67
        images/icons/callouts/3.png \
 
68
        images/icons/callouts/4.png \
 
69
        images/icons/callouts/5.png \
 
70
        images/icons/callouts/6.png \
 
71
        images/icons/callouts/7.png \
 
72
        images/icons/callouts/8.png \
 
73
        images/icons/callouts/9.png \
 
74
        images/icons/callouts/10.png \
 
75
        images/icons/callouts/11.png \
 
76
        images/icons/callouts/12.png \
 
77
        images/icons/callouts/13.png \
 
78
        images/icons/callouts/14.png \
 
79
        images/icons/callouts/15.png
 
80
 
 
81
%.html: %.txt
 
82
        ./resolve-asciidoc-refs.py $< > asciidoc.tmp
 
83
        asciidoc $(ASCIIDOCOPTS) -o $@ asciidoc.tmp
 
84
        ./doxygen-link.py libnl.dict $@ > asciidoc.tmp
 
85
        mv asciidoc.tmp $@
 
86
 
 
87
asciidoc: core.html route.html index.html
 
88
 
 
89
api_ref:
 
90
        doxygen Doxyfile;
 
91
        ./gen-tags.sh | ./tags2dict.sh > libnl.dict
 
92
 
 
93
gendoc:
 
94
        $(MAKE) api_ref
 
95
        $(MAKE) asciidoc
 
96
 
 
97
clean-local:
 
98
        rm -f api/* libnl.dict *.html;