mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2026-03-29 07:15:05 +00:00
Console support for the system container. Signed-off-by: Daniel Lezcano <daniel.lezcano@free.fr> Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
37 lines
444 B
Makefile
37 lines
444 B
Makefile
|
|
EXTRA_DIST = FAQ.txt
|
|
|
|
if ENABLE_DOCBOOK
|
|
man_MANS = \
|
|
lxc-create.1 \
|
|
lxc-destroy.1 \
|
|
lxc-execute.1 \
|
|
lxc-start.1 \
|
|
lxc-stop.1 \
|
|
lxc-console.1 \
|
|
lxc-freeze.1 \
|
|
lxc-unfreeze.1 \
|
|
lxc-monitor.1 \
|
|
lxc-wait.1 \
|
|
lxc-ls.1 \
|
|
lxc-ps.1 \
|
|
lxc-cgroup.1 \
|
|
\
|
|
lxc.conf.5 \
|
|
\
|
|
lxc.7
|
|
|
|
|
|
%.1 : %.sgml
|
|
docbook2man $<
|
|
|
|
%.5 : %.sgml
|
|
docbook2man $<
|
|
|
|
%.7 : %.sgml
|
|
docbook2man $<
|
|
|
|
clean-local:
|
|
$(RM) manpage.* *.7 *.5 *.1 *.sgml $(man_MANS)
|
|
endif
|