]> git.proxmox.com Git - mirror_lxc.git/blob - doc/ko/Makefile.am
doc: Add Korean man pages
[mirror_lxc.git] / doc / ko / Makefile.am
1 mandir = @mandir@/ko
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-clone.1 \
17 lxc-config.1 \
18 lxc-console.1 \
19 lxc-create.1 \
20 lxc-destroy.1 \
21 lxc-execute.1 \
22 lxc-freeze.1 \
23 lxc-info.1 \
24 lxc-monitor.1 \
25 lxc-snapshot.1 \
26 lxc-start.1 \
27 lxc-stop.1 \
28 lxc-top.1 \
29 lxc-unfreeze.1 \
30 lxc-unshare.1 \
31 lxc-user-nic.1 \
32 lxc-usernsexec.1 \
33 lxc-wait.1 \
34 \
35 lxc.conf.5 \
36 lxc.container.conf.5 \
37 lxc.system.conf.5 \
38 lxc-usernet.5 \
39 \
40 lxc.7
41
42 if ENABLE_PYTHON
43 man_MANS += lxc-device.1
44 man_MANS += lxc-ls.1
45 man_MANS += lxc-start-ephemeral.1
46 else
47 man_MANS += legacy/lxc-ls.1
48 endif
49
50 %.1 : %.sgml
51 $(db2xman) --encoding=UTF-8 $<
52 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
53
54 %.5 : %.sgml
55 $(db2xman) --encoding=UTF-8 $<
56 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
57
58 %.7 : %.sgml
59 $(db2xman) --encoding=UTF-8 $<
60 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
61
62 lxc-%.sgml : common_options.sgml see_also.sgml
63
64 clean-local:
65 $(RM) manpage.* *.7 *.5 *.1 $(man_MANS)
66 endif