]> git.proxmox.com Git - mirror_lxc.git/blob - doc/Makefile.am
update lxc-checkpoint / lxc-restart man
[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 \
27 lxc.conf.5 \
28 \
29 lxc.7
30
31
32 %.1 : %.sgml
33 docbook2man -w all $<
34
35 %.5 : %.sgml
36 docbook2man -w all $<
37
38 %.7 : %.sgml
39 docbook2man -w all $<
40
41 lxc-%.sgml : common_options.sgml see_also.sgml
42
43 maintainer-clean-local:
44 $(RM) manpage.* *.7 *.5 *.1 $(man_MANS)
45 endif