qemu-server/PVE/QemuServer/Makefile
Fiona Ebner 87b0f305e7 introduce QMPHelpers module
moving qemu_{device,object}{add,del} helpers there for now.

In preparation to remove the cyclic include of PVE::QemuServer in the
memory module and generally for better modularity in the future.

No functional change intended.

Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
2023-09-18 17:08:48 +02:00

19 lines
327 B
Makefile

SOURCES=PCI.pm \
USB.pm \
Memory.pm \
ImportDisk.pm \
OVF.pm \
Cloudinit.pm \
Agent.pm \
Helpers.pm \
Monitor.pm \
Machine.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