~serge-hallyn/ubuntu/quantal/lxc/lxc-aa-custom-profile

« back to all changes in this revision

Viewing changes to doc/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Guido Trotter
  • Date: 2009-04-29 17:49:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090429174913-jvahs1ykizqtodje
Tags: upstream-0.6.2
ImportĀ upstreamĀ versionĀ 0.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
EXTRA_DIST = FAQ.txt
 
3
 
 
4
if ENABLE_DOCBOOK
 
5
man_MANS = \
 
6
        lxc-create.1 \
 
7
        lxc-destroy.1 \
 
8
        lxc-execute.1 \
 
9
        lxc-start.1 \
 
10
        lxc-stop.1 \
 
11
        lxc-console.1 \
 
12
        lxc-freeze.1 \
 
13
        lxc-unfreeze.1 \
 
14
        lxc-monitor.1 \
 
15
        lxc-wait.1 \
 
16
        lxc-ls.1 \
 
17
        lxc-ps.1 \
 
18
        lxc-cgroup.1 \
 
19
        \
 
20
        lxc.conf.5 \
 
21
        \
 
22
        lxc.7
 
23
 
 
24
 
 
25
%.1 : %.sgml 
 
26
        docbook2man $<
 
27
 
 
28
%.5 : %.sgml 
 
29
        docbook2man $<
 
30
 
 
31
%.7 : %.sgml 
 
32
        docbook2man $<
 
33
 
 
34
clean-local:
 
35
        $(RM) manpage.* *.7 *.5 *.1 *.sgml $(man_MANS)
 
36
endif