qemu-server/PVE/QemuServer/Makefile
Fiona Ebner 8c4f436b3c move meta information handling to its own module
Like this, it can be used by modules that cannot depend on
QemuServer.pm without creating a cyclic dependency.

Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
2025-01-17 19:24:02 +01:00

19 lines
331 B
Makefile

SOURCES=PCI.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