]> git.proxmox.com Git - mirror_lxc.git/blame - doc/Makefile.am
Merge pull request #3895 from tenforward/japanese
[mirror_lxc.git] / doc / Makefile.am
CommitLineData
7cb14f34 1SUBDIRS = examples rootfs
2b371b26 2DIST_SUBDIRS = examples rootfs ja ko api
7cb14f34
KY
3
4if USE_DOCBOOK2X
2b371b26 5SUBDIRS += ja ko
7cb14f34 6endif
892bd61e 7
953e611c
JH
8if ENABLE_API_DOCS
9SUBDIRS += api
10endif
11
fef909cf
CB
12EXTRA_DIST = api-extensions.md \
13 lxc.container.conf \
14 lxc.system.conf \
15 FAQ.txt
892bd61e 16
d1de19ab 17if ENABLE_DOCBOOK
8d060937
CB
18man_MANS = lxc.conf.5 \
19 lxc.container.conf.5 \
20 lxc.system.conf.5 \
21 lxc-usernet.5 \
22 lxc.7
23if ENABLE_TOOLS
24man_MANS += lxc-attach.1 \
25 lxc-autostart.1 \
26 lxc-cgroup.1 \
27 lxc-checkconfig.1 \
28 lxc-checkpoint.1 \
29 lxc-config.1 \
30 lxc-console.1 \
31 lxc-copy.1 \
32 lxc-create.1 \
33 lxc-destroy.1 \
34 lxc-device.1 \
35 lxc-execute.1 \
36 lxc-freeze.1 \
37 lxc-info.1 \
38 lxc-ls.1 \
39 lxc-monitor.1 \
40 lxc-snapshot.1 \
41 lxc-start.1 \
42 lxc-stop.1 \
43 lxc-top.1 \
44 lxc-unfreeze.1 \
45 lxc-unshare.1 \
46 lxc-wait.1
6a85cf91 47endif
8d060937 48
a98ad25d
VHRA
49if ENABLE_PAM
50man_MANS += pam_cgfs.8
51endif
52
8d060937
CB
53if ENABLE_COMMANDS
54man_MANS += lxc-update-config.1 \
55 lxc-user-nic.1 \
56 lxc-usernsexec.1
d0a6bd39 57endif
d1de19ab 58
aa8d013e 59%.1 : %.sgml
7822022c 60 $(db2xman) $<
6a85cf91 61 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
8a67a2b2 62
aa8d013e 63%.5 : %.sgml
7822022c 64 $(db2xman) $<
6a85cf91 65 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
8a67a2b2 66
aa8d013e 67%.7 : %.sgml
7822022c 68 $(db2xman) $<
6a85cf91 69 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
99e4008c 70
a98ad25d
VHRA
71%.8 : %.sgml
72 $(db2xman) $<
73 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
74
10fba81b 75lxc-%.sgml : common_options.sgml see_also.sgml
8b8b04f8 76
9a42db48 77clean-local:
a98ad25d 78 $(RM) manpage.* *.7 *.5 *.1 *.8 $(man_MANS)
892bd61e 79endif