mirror of
https://git.proxmox.com/git/qemu-server
synced 2025-10-04 07:38:07 +00:00

Move code related to VirtIO RNG configuration for a VM to its own module. Signed-off-by: Filip Schauer <f.schauer@proxmox.com>
20 lines
342 B
Makefile
20 lines
342 B
Makefile
SOURCES=PCI.pm \
|
|
RNG.pm \
|
|
USB.pm \
|
|
Memory.pm \
|
|
ImportDisk.pm \
|
|
Cloudinit.pm \
|
|
Agent.pm \
|
|
Helpers.pm \
|
|
Monitor.pm \
|
|
Machine.pm \
|
|
MetaInfo.pm \
|
|
CPUConfig.pm \
|
|
CGroup.pm \
|
|
Drive.pm \
|
|
QMPHelpers.pm
|
|
|
|
.PHONY: install
|
|
install: ${SOURCES}
|
|
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/QemuServer/$$i; done
|