mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-07-09 18:01:52 +00:00

...PVE::QemuServer::Machine. qemu_machine_feature_enabled is exported since it has a *lot* of users in PVE::QemuServer and a long enough name as it is. Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
15 lines
271 B
Makefile
15 lines
271 B
Makefile
SOURCES=PCI.pm \
|
|
USB.pm \
|
|
Memory.pm \
|
|
ImportDisk.pm \
|
|
OVF.pm \
|
|
Cloudinit.pm \
|
|
Agent.pm \
|
|
Helpers.pm \
|
|
Monitor.pm \
|
|
Machine.pm \
|
|
|
|
.PHONY: install
|
|
install: ${SOURCES}
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/QemuServer/$$i; done
|