mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-07-27 09:35:31 +00:00

lxc-ps and lxc-netstat have an unfortunate tendency to break every so often, produce mostly unreadable output and should be replaced by a lxc-attach call in 99% of the cases. In an effort to cleanup the lxc-* namespace, I think those two should go, so this patch gets rid of them as well as any reference to them in our documentation. I also think that lxc-version should disappear as it's only a one line shell script printing the version string, so having a whole command just for that seems to be a bit of a waste. Instead, this patch introduces a new --version common option which all binaries will automatically inherit and that'll print LXC_VERSION on stdout and exit 0. Signed-off-by: Stéphane Graber <stgraber@ubuntu.com> Acked-by: Serge E. Hallyn <serge.hallyn@ubuntu.com>
73 lines
1.2 KiB
Makefile
73 lines
1.2 KiB
Makefile
SUBDIRS = examples rootfs
|
|
DIST_SUBDIRS = examples rootfs ja api
|
|
|
|
if USE_DOCBOOK2X
|
|
SUBDIRS += ja
|
|
endif
|
|
|
|
if ENABLE_API_DOCS
|
|
SUBDIRS += api
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
lxc.conf \
|
|
FAQ.txt
|
|
|
|
if ENABLE_DOCBOOK
|
|
man_MANS = \
|
|
lxc-attach.1 \
|
|
lxc-autostart.1 \
|
|
lxc-cgroup.1 \
|
|
lxc-checkconfig.1 \
|
|
lxc-clone.1 \
|
|
lxc-console.1 \
|
|
lxc-create.1 \
|
|
lxc-destroy.1 \
|
|
lxc-execute.1 \
|
|
lxc-freeze.1 \
|
|
lxc-info.1 \
|
|
lxc-monitor.1 \
|
|
lxc-snapshot.1 \
|
|
lxc-start.1 \
|
|
lxc-stop.1 \
|
|
lxc-unfreeze.1 \
|
|
lxc-unshare.1 \
|
|
lxc-user-nic.1 \
|
|
lxc-usernsexec.1 \
|
|
lxc-wait.1 \
|
|
\
|
|
lxc.conf.5 \
|
|
lxc-usernet.5 \
|
|
\
|
|
lxc.7
|
|
|
|
if ENABLE_PYTHON
|
|
man_MANS += lxc-device.1
|
|
man_MANS += lxc-ls.1
|
|
man_MANS += lxc-start-ephemeral.1
|
|
else
|
|
man_MANS += legacy/lxc-ls.1
|
|
endif
|
|
|
|
if ENABLE_LUA
|
|
man_MANS += lxc-top.1
|
|
endif
|
|
|
|
%.1 : %.sgml
|
|
$(db2xman) $<
|
|
test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
|
|
|
|
%.5 : %.sgml
|
|
$(db2xman) $<
|
|
test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
|
|
|
|
%.7 : %.sgml
|
|
$(db2xman) $<
|
|
test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
|
|
|
|
lxc-%.sgml : common_options.sgml see_also.sgml
|
|
|
|
clean-local:
|
|
$(RM) manpage.* *.7 *.5 *.1 $(man_MANS)
|
|
endif
|