qemu-server/PVE/Makefile
Fabian Grünbichler ffda963f46 Refactor basic config-related methods
Drop load_config, write_config, lock_config[_xx],
check_lock, check_protection, is_template and config_file
in favour of implementions in PVE::AbstractConfig.

Implement guest_type, __config_max_unused_disks,
config_file_lock and cfs_config_path from
PVE::AbstractConfig in PVE::QemuConfig.
2016-03-08 11:41:59 +01:00

14 lines
274 B
Makefile

PERLSOURCE = \
QemuServer.pm \
QemuMigrate.pm \
QMPClient.pm \
QemuConfig.pm
.PHONY: install
install:
install -d ${DESTDIR}${PERLDIR}/PVE
install -m 0644 ${PERLSOURCE} ${DESTDIR}${PERLDIR}/PVE/
make -C VZDump install
make -C API2 install
make -C CLI install