]> git.proxmox.com Git - mirror_lxc.git/blob - doc/Makefile.am
Update documentation to Docbook 4.5
[mirror_lxc.git] / doc / Makefile.am
1 SUBDIRS = examples rootfs
2 DIST_SUBDIRS = examples rootfs
3
4 EXTRA_DIST = \
5 FAQ.txt \
6 $(man_MANS)
7
8 if ENABLE_DOCBOOK
9 man_MANS = \
10 lxc-create.1 \
11 lxc-destroy.1 \
12 lxc-execute.1 \
13 lxc-start.1 \
14 lxc-stop.1 \
15 lxc-checkpoint.1 \
16 lxc-restart.1 \
17 lxc-console.1 \
18 lxc-freeze.1 \
19 lxc-unfreeze.1 \
20 lxc-monitor.1 \
21 lxc-wait.1 \
22 lxc-ls.1 \
23 lxc-ps.1 \
24 lxc-cgroup.1 \
25 lxc-kill.1 \
26 lxc-attach.1 \
27 \
28 lxc.conf.5 \
29 \
30 lxc.7
31
32
33 %.1 : %.sgml
34 docbook2man $<
35
36 %.5 : %.sgml
37 docbook2man $<
38
39 %.7 : %.sgml
40 docbook2man $<
41
42 lxc-%.sgml : common_options.sgml see_also.sgml
43
44 maintainer-clean-local:
45 $(RM) manpage.* *.7 *.5 *.1 $(man_MANS)
46 endif