5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-02-10 13:57:37 +03:00
Wolfgang Bumiller 114d2e765a add PVE::QemuServer::Cgroup
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2020-11-24 12:00:33 +01:00

18 lines
312 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 \
.PHONY: install
install: ${SOURCES}
for i in ${SOURCES}; do install -D -m 0644 $$i ${DESTDIR}${PERLDIR}/PVE/QemuServer/$$i; done