]> git.proxmox.com Git - mirror_lxc.git/blob - doc/ja/Makefile.am
start: call lxc_find_gateway_addresses early
[mirror_lxc.git] / doc / ja / Makefile.am
1 mandir = @mandir@/ja
2
3 SUBDIRS =
4 DIST_SUBDIRS =
5
6 EXTRA_DIST = \
7 FAQ.txt
8
9 if ENABLE_DOCBOOK
10 man_MANS = \
11 lxc-attach.1 \
12 lxc-autostart.1 \
13 lxc-cgroup.1 \
14 lxc-checkconfig.1 \
15 lxc-checkpoint.1 \
16 lxc-config.1 \
17 lxc-console.1 \
18 lxc-copy.1 \
19 lxc-create.1 \
20 lxc-destroy.1 \
21 lxc-device.1 \
22 lxc-execute.1 \
23 lxc-freeze.1 \
24 lxc-info.1 \
25 lxc-ls.1 \
26 lxc-monitor.1 \
27 lxc-snapshot.1 \
28 lxc-start.1 \
29 lxc-stop.1 \
30 lxc-top.1 \
31 lxc-unfreeze.1 \
32 lxc-unshare.1 \
33 lxc-update-config.1 \
34 lxc-user-nic.1 \
35 lxc-usernsexec.1 \
36 lxc-wait.1 \
37 \
38 lxc.conf.5 \
39 lxc.container.conf.5 \
40 lxc.system.conf.5 \
41 lxc-usernet.5 \
42 \
43 lxc.7
44
45 %.1 : %.sgml
46 $(db2xman) --encoding=UTF-8 $<
47 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
48
49 %.5 : %.sgml
50 $(db2xman) --encoding=UTF-8 $<
51 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
52
53 %.7 : %.sgml
54 $(db2xman) --encoding=UTF-8 $<
55 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
56
57 lxc-%.sgml : common_options.sgml see_also.sgml
58
59 clean-local:
60 $(RM) manpage.* *.7 *.5 *.1 $(man_MANS)
61 endif