mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-08-06 07:46:53 +00:00

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.
14 lines
274 B
Makefile
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
|