]> git.proxmox.com Git - mirror_lxc.git/blob - doc/ko/Makefile.am
2b196830af6f4ced895a5fc38c8c28cbddac2c3b
[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-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-user-nic.1 \
34 lxc-usernsexec.1 \
35 lxc-wait.1 \
36 \
37 lxc.conf.5 \
38 lxc.container.conf.5 \
39 lxc.system.conf.5 \
40 lxc-usernet.5 \
41 \
42 lxc.7
43
44 %.1 : %.sgml
45 $(db2xman) --encoding=UTF-8 $<
46 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
47
48 %.5 : %.sgml
49 $(db2xman) --encoding=UTF-8 $<
50 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
51
52 %.7 : %.sgml
53 $(db2xman) --encoding=UTF-8 $<
54 test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
55
56 lxc-%.sgml : common_options.sgml see_also.sgml
57
58 clean-local:
59 $(RM) manpage.* *.7 *.5 *.1 $(man_MANS)
60 endif