mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-04-28 14:45:24 +00:00

deleted: CODING_STYLE.md deleted: LICENSE.GPL2 deleted: LICENSE.LGPL2.1 deleted: README.md deleted: coccinelle/exit.cocci deleted: coccinelle/run-coccinelle.sh deleted: coccinelle/while-true.cocci deleted: doc/api-extensions.md deleted: src/tests/lxc-test-exit-code deleted: src/tests/travis.sh Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
80 lines
1.5 KiB
Makefile
80 lines
1.5 KiB
Makefile
SUBDIRS = examples rootfs
|
|
DIST_SUBDIRS = examples rootfs ja ko api
|
|
|
|
if USE_DOCBOOK2X
|
|
SUBDIRS += ja ko
|
|
endif
|
|
|
|
if ENABLE_API_DOCS
|
|
SUBDIRS += api
|
|
endif
|
|
|
|
EXTRA_DIST = api-extensions.md \
|
|
lxc.container.conf \
|
|
lxc.system.conf \
|
|
FAQ.txt
|
|
|
|
if ENABLE_DOCBOOK
|
|
man_MANS = lxc.conf.5 \
|
|
lxc.container.conf.5 \
|
|
lxc.system.conf.5 \
|
|
lxc-usernet.5 \
|
|
lxc.7
|
|
if ENABLE_TOOLS
|
|
man_MANS += lxc-attach.1 \
|
|
lxc-autostart.1 \
|
|
lxc-cgroup.1 \
|
|
lxc-checkconfig.1 \
|
|
lxc-checkpoint.1 \
|
|
lxc-config.1 \
|
|
lxc-console.1 \
|
|
lxc-copy.1 \
|
|
lxc-create.1 \
|
|
lxc-destroy.1 \
|
|
lxc-device.1 \
|
|
lxc-execute.1 \
|
|
lxc-freeze.1 \
|
|
lxc-info.1 \
|
|
lxc-ls.1 \
|
|
lxc-monitor.1 \
|
|
lxc-snapshot.1 \
|
|
lxc-start.1 \
|
|
lxc-stop.1 \
|
|
lxc-top.1 \
|
|
lxc-unfreeze.1 \
|
|
lxc-unshare.1 \
|
|
lxc-wait.1
|
|
endif
|
|
|
|
if ENABLE_PAM
|
|
man_MANS += pam_cgfs.8
|
|
endif
|
|
|
|
if ENABLE_COMMANDS
|
|
man_MANS += lxc-update-config.1 \
|
|
lxc-user-nic.1 \
|
|
lxc-usernsexec.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
|
|
|
|
%.8 : %.sgml
|
|
$(db2xman) $<
|
|
test "$(shell basename $@)" != "$@" && mv $(shell basename $@) $@ || true
|
|
|
|
lxc-%.sgml : common_options.sgml see_also.sgml
|
|
|
|
clean-local:
|
|
$(RM) manpage.* *.7 *.5 *.1 *.8 $(man_MANS)
|
|
endif
|